/* ── CSS VARIABLES ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8d190;
  --gold-dark: #9a7a2e;
  --black: #0e0e0e;
  --black-soft: #1a1a1a;
  --beige: #f5efe6;
  --beige-dark: #e8ddd0;
  --beige-mid: #d4c5b0;
  --white: #ffffff;
  --text-dark: #2c2416;
  --text-mid: #5a4d3a;
  --text-light: #9a8d7a;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--beige);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: all .4s ease;
  background: transparent;
}

.nav.solid {
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}


.nav-logo-mark {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;

  /* 🔥 HARD CIRCLE MASK */
  clip-path: circle(50% at 50% 50%);
}
.nav-logo-text { line-height: 1.15; }

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: .35s;
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.5) 60%, rgba(10,10,10,.3) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/atc-bgg.jpg");
  background-size: cover;
  background-position: center top;
  opacity: .55;
  animation: zoomBg 18s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 820px;
  animation: fadeUp 7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,168,76,.45);
  color: #c9a84c;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 1px;
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 42px;
  letter-spacing: .3px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 16px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: .35s;
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 1px;
  cursor: pointer;
  transition: .35s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-scroll::before {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.3);
}

/* ── SECTION SHELL ── */
.section { padding: 100px 5%; }
.section.dark { background: var(--black-soft); color: var(--white); }
.section.beige { background: var(--beige); }
.section.white { background: var(--white); }

.sec-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.sec-title.light { color: var(--white); }

.sec-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 560px;
}

.sec-sub.light { color: rgba(255,255,255,.55); }

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0;
}

/* ── BANNER SECTION ── */
.banner-section {
  padding: 80px 5%;
  background: var(--black);
}

.banner-inner {
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 4px;
  overflow: hidden;
}

.banner-inner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.brand-strip {
  background: linear-gradient(135deg, var(--black-soft), #0a0a0a);
  padding: 32px 5%;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.15);
}

.brand-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 2px;
}

.brand-pill span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── SERVICES ── */
.services-wrap { max-width: 1200px; margin: 0 auto; }

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-header .sec-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.svc-card {
  padding: 48px 40px;
  border: 1px solid var(--beige-dark);
  background: var(--white);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: .4s;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.08);
}

.svc-card:hover::after { transform: scaleX(1); }

.svc-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-light);
  opacity: .5;
  line-height: 1;
  margin-bottom: 20px;
}

.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.svc-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
}

/* ── ABOUT ── */
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .6s;
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.about-img-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.about-img-badge span {
  font-size: 9px;
  color: rgba(0,0,0,.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── EXPERIENCE ── */
.exp-grid {
  max-width: 1100px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.exp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.12);
  padding: 44px 32px;
  text-align: center;
  transition: .35s;
}

.exp-card:hover {
  background: rgba(201,168,76,.07);
  border-color: rgba(201,168,76,.35);
}

.exp-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.exp-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ── MISSION / VISION ── */
.mv-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.mv-card {
  padding: 56px 52px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 8px 36px rgba(0,0,0,.05);
  transition: .35s;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.09);
}

.mv-icon { font-size: 36px; margin-bottom: 20px; }

.mv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.mv-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.95;
  font-weight: 300;
}

.mv-card p + p { margin-top: 12px; }

/* ── VALUES ── */
.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.val-card {
  padding: 32px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 2px;
  transition: .35s;
  text-align: center;
}

.val-card:hover {
  background: rgba(201,168,76,.07);
  border-color: rgba(201,168,76,.35);
  transform: translateY(-4px);
}

.val-icon { font-size: 28px; margin-bottom: 14px; }

.val-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.val-card p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CONTACT ── */
.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  background: var(--black-soft);
  padding: 52px 44px;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,.18);
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 36px;
}

.cinfo-row {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.cinfo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));  
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  
}

.cinfo-text strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.cinfo-text p,
.cinfo-text a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  font-weight: 300;
  text-decoration: none;
}

.cinfo-text a:hover { color: var(--gold-light); }

.contact-map {
  margin-top: 28px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.18);
}

.contact-form-card {
  background: var(--white);
  padding: 56px 52px;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

.contact-form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form-card > p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 36px;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--beige-dark);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--beige);
  outline: none;
  transition: .3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .35s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: #fdf8ee;
  border: 1px solid var(--gold-light);
  border-radius: 2px;
  margin-top: 18px;
}

.form-success.show { display: block; }
.form-success .check { font-size: 36px; margin-bottom: 10px; }

.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.form-success p { font-size: 13px; color: var(--text-mid); }

/* ── MAP BANNER ── */
.map-banner {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}

.map-banner iframe { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 64px 5% 32px;
  border-top: 1px solid rgba(201,168,76,.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(201,168,76,.1);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-top: 18px;
  line-height: 1.9;
  max-width: 300px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: .3s;
  cursor: pointer;
}

.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
  font-weight: 300;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.2);
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--black);
  padding: 160px 5% 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1400&q=80');
  background-size: cover;
  background-position: center;
  opacity: .12;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 66px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
}

.page-hero p {
  color: rgba(255,255,255,.5);
  font-size: 16px;
  max-width: 480px;
  margin-top: 16px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE MANAGEMENT ── */
.page { display: none; }
.page.active { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,.97);
    padding: 24px 5%;
    gap: 8px;
    border-top: 1px solid rgba(201,168,76,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 13px; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-card { padding: 36px 28px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
}


