@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Cinzel:wght@400;500;600&family=Raleway:wght@300;400;500&display=swap');

:root {
  --gold: #B8952A;
  --gold-light: #D4AF5A;
  --gold-pale: #F0E6C8;
  --dark: #0D0D0D;
  --dark-2: #141414;
  --dark-3: #1C1C1C;
  --dark-4: #242424;
  --text: #E8E0D0;
  --text-muted: #9A9080;
  --white: #FAF8F3;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}

nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(184, 149, 42, 0.15);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 10px;
  display: block;
  letter-spacing: 0.3em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 52px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
  text-align: justify;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--dark);
  padding: 18px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(184, 149, 42, 0.25);
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(13,13,13,0.3) 40%, transparent 100%);
  z-index: 1;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.45);
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.3s;
}

.hero-ornament {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Decorative line */
.hero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,149,42,0.3), transparent);
  z-index: 3;
}

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(184,149,42,0.12);
  border-bottom: 1px solid rgba(184,149,42,0.12);
  padding: 52px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(184,149,42,0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════
   AREAS DE ATUAÇÃO
══════════════════════════════════ */
.section {
  padding: 120px 60px;
}

.section-header {
  margin-bottom: 80px;
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  max-width: 600px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,149,42,0.1);
}

.area-card {
  background: var(--dark-2);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s ease;
}

.area-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.area-card:hover {
  background: var(--dark-3);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(184,149,42,0.08);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
  transition: color 0.4s;
}

.area-card:hover .area-number {
  color: rgba(184,149,42,0.14);
}

.area-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--gold);
}

.area-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.area-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  text-align: justify;
}

/* ══════════════════════════════════
   SOBRE / DIFERENCIAIS
══════════════════════════════════ */
.about {
  background: var(--dark-2);
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 620px;
  overflow: hidden;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s;
}

.about-image-frame:hover img {
  filter: grayscale(0%);
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,13,13,0.6) 100%);
}

.about-deco {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(184,149,42,0.25);
  z-index: -1;
}

.about-deco-2 {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(184,149,42,0.15);
  z-index: -1;
}


.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 36px;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 52px;
}

.differentials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.differential-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.differential-icon {
  width: 36px;
  height: 36px;
  background: rgba(184,149,42,0.08);
  border: 1px solid rgba(184,149,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.differential-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.differential-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════
   EQUIPE
══════════════════════════════════ */
.team {
  padding: 120px 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(184,149,42,0.08);
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--dark);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.team-card:hover {
  background: var(--dark-2);
}

.team-photo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--dark-3);
  border: 1px solid rgba(184,149,42,0.2);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  overflow: hidden;
  position: relative;
}

.team-photo-placeholder svg {
  opacity: 0.4;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.team-role {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.team-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  text-align: justify;
}

.team-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.team-oab {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ══════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════ */
.testimonials {
  background: var(--dark-2);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 400px;
  color: rgba(184,149,42,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184,149,42,0.08);
  margin-top: 64px;
}

.testimonial-card {
  background: var(--dark-2);
  padding: 44px 40px;
  transition: background 0.4s;
}

.testimonial-card:hover {
  background: var(--dark-3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.star {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--dark-4);
  border: 1px solid rgba(184,149,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--gold);
}

.author-name {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.author-info {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */
.cta-section {
  padding: 140px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,149,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}


.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 52px;
  text-align: justify;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid rgba(184,149,42,0.15);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184,149,42,0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9080' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 20px 44px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(184,149,42,0.25);
}

/* ══════════════════════════════════
   CONTATO INFO
══════════════════════════════════ */
.contact-info {
  background: var(--dark-2);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-top: 1px solid rgba(184,149,42,0.12);
}

.contact-block {
  background: var(--dark-2);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(184,149,42,0.08);
}

.contact-block:last-child {
  border-right: none;
}

.contact-block-icon {
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-block-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-block-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
}

.contact-block-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-block-value a:hover {
  color: var(--gold-light);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(184,149,42,0.12);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.footer-logo-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 36px;
}

.footer-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(184,149,42,0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-oab {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════
   MOBILE MENU
══════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  padding: 18px 40px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(184,149,42,0.08);
  width: 100%;
  text-align: center;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--gold-light);
}

.mobile-menu-cta {
  margin-top: 40px;
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  padding: 16px 40px !important;
  border: none !important;
  border-bottom: none !important;
  width: auto !important;
}

/* ══════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════ */
@media (max-width: 1024px) {
  /* Nav */
  nav { padding: 24px 32px; }
  nav.scrolled { padding: 16px 32px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 10px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: 90vh; }
  .hero-right { display: none; }
  .hero-left { padding: 130px 40px 80px; }
  .hero-line { display: none; }
  .hero-ornament { left: 40px; }

  /* Stats */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 40px;
    gap: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(184,149,42,0.1);
    padding: 24px 20px;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(184,149,42,0.1); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  /* Sections */
  .section { padding: 80px 40px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* About */
  .about { grid-template-columns: 1fr; padding: 80px 40px; gap: 60px; }
  .about-visual { max-width: 460px; margin: 0 auto; width: 100%; }

  /* Team */
  .team { padding: 80px 40px; }

  /* Testimonials */
  .testimonials { padding: 80px 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section { grid-template-columns: 1fr; padding: 80px 40px; gap: 60px; }

  /* Contact */
  .contact-info { grid-template-columns: 1fr; padding: 0; }
  .contact-block {
    border-right: none;
    border-bottom: 1px solid rgba(184,149,42,0.08);
    padding: 40px;
  }
  .contact-block:last-child { border-bottom: none; }

  /* Footer */
  footer { padding: 52px 40px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav — show hamburger */
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-left { padding: 110px 24px 72px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.35em; margin-bottom: 24px; }
  .hero-title { font-size: clamp(40px, 10vw, 60px); }
  .hero-subtitle { font-size: clamp(13px, 3.5vw, 17px); margin-bottom: 36px; }
  .hero-desc { font-size: 14px; margin-bottom: 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-primary { padding: 16px 32px; font-size: 10px; }
  .hero-ornament { left: 24px; bottom: 40px; }
  .hero-stat-number { font-size: 48px; }

  /* Stats */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px;
    gap: 0;
  }
  .stat-number { font-size: 38px; }
  .stat-label { font-size: 9px; letter-spacing: 0.2em; }
  .stat-item { padding: 20px 12px; }

  /* Sections */
  .section { padding: 64px 24px; }
  .section-title { font-size: clamp(30px, 7vw, 46px); }
  .section-header { margin-bottom: 48px; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr; gap: 1px; }
  .area-card { padding: 40px 28px; }
  .area-number { font-size: 52px; }
  .area-title { font-size: 13px; }
  .area-desc { font-size: 13px; }

  /* About */
  .about { padding: 64px 24px; gap: 48px; flex-direction: column; }
  .about-visual { max-width: 100%; }
  .about-image-frame { aspect-ratio: 4/3; max-height: 320px; }
  .about-deco { display: none; }
  .about-deco-2 { display: none; }
  .about-text { font-size: 19px; padding-left: 20px; }
  .about-body { font-size: 14px; margin-bottom: 36px; }

  /* Team */
  .team { padding: 64px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 44px 28px; }
  .team-name { font-size: 24px; }

  /* Testimonials */
  .testimonials { padding: 64px 24px; }
  .testimonials::before { font-size: 220px; top: -10px; left: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1px; }
  .testimonial-card { padding: 36px 28px; }
  .testimonial-text { font-size: 16px; }

  /* CTA */
  .cta-section { padding: 64px 24px; gap: 48px; }
  .cta-title { font-size: clamp(32px, 8vw, 52px); }
  .cta-desc { font-size: 14px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .contact-form { gap: 14px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 14px 16px; font-size: 14px; }
  .btn-submit { padding: 18px 36px; font-size: 10px; width: 100%; justify-content: center; }

  /* Contact blocks */
  .contact-info { padding: 0; }
  .contact-block { padding: 32px 24px; flex-direction: row; align-items: center; gap: 20px; }
  .contact-block-icon { margin-bottom: 0; flex-shrink: 0; }
  .contact-block-value { font-size: 18px; }

  /* Inline contact in CTA */
  .cta-section > div[style] { padding: 28px 24px !important; }

  /* Footer */
  footer { padding: 40px 24px; gap: 32px; }
  .footer-logo { font-size: 14px; }
  .footer-links { flex-direction: column; gap: 14px; align-items: flex-start; }
  .footer-top { gap: 28px; }
  .footer-copy { font-size: 11px; }

  /* Section label */
  .section-label { font-size: 9px; }
}

/* ══════════════════════════════════
   RESPONSIVE — SMALL (≤420px)
══════════════════════════════════ */
@media (max-width: 420px) {
  .hero-left { padding: 100px 18px 60px; }
  .hero-title { font-size: 36px; }
  .hero-actions { gap: 14px; }
  .btn-primary { padding: 15px 24px; width: 100%; justify-content: center; }

  .stats-bar { grid-template-columns: 1fr 1fr; padding: 24px 18px; }
  .stat-number { font-size: 32px; }

  .section { padding: 56px 18px; }
  .area-card { padding: 32px 20px; }

  .about { padding: 56px 18px; }
  .about-image-frame { max-height: 260px; }

  .team { padding: 56px 18px; }
  .team-card { padding: 36px 20px; }

  .testimonials { padding: 56px 18px; }
  .testimonial-card { padding: 28px 20px; }

  .cta-section { padding: 56px 18px; }

  .contact-block { padding: 24px 18px; flex-direction: column; align-items: flex-start; }

  footer { padding: 32px 18px; }

  .mobile-menu a { font-size: 28px; padding: 16px 28px; }
}
