:root {
    --gold: #b8963e;
    --gold-light: #d4af6a;
    --gold-pale: #e8d5a3;
    --dark: #201a04;
    --dark-mid: #2e2508;
    --charcoal: #1a1a1a;
    --off-white: #f8f5ef;
    --cream: #f2ead8;
    --text-muted: #8a7a5a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--off-white);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ─── INTRO OVERLAY ─── */
  #intro {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOutIntro 0.8s ease-in-out 3.2s forwards;
  }

  #intro-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .intro-emblem {
    width: 120px;
    height: 120px;
    opacity: 0;
    transform: scale(0.6);
    animation: revealEmblem 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  }

  .intro-name {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 0.7s ease-out 1.1s forwards;
    text-align: center;
  }

  .intro-name h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--off-white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .intro-name span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 0.5rem;
  }

  .intro-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    animation: expandLine 0.6s ease-out 1.8s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
  }

  @keyframes revealEmblem {
    to { opacity: 1; transform: scale(1); }
  }
  @keyframes revealText {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes expandLine {
    0% { width: 0; opacity: 1; }
    100% { width: 180px; opacity: 1; }
  }
  @keyframes fadeOutIntro {
    0% { opacity: 1; pointer-events: all; }
    100% { opacity: 0; pointer-events: none; }
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(32, 26, 4, 0.97);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    transition: background 0.4s, box-shadow 0.4s;
    gap: 2rem;
  }

  nav.scrolled {
    background: rgba(32, 26, 4, 0.99);
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo-emblem {
    width: 42px;
    height: 42px;
  }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--off-white);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    flex-shrink: 0;
  }

  .nav-links a {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(248,245,239,0.7);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-contact-btn {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark) !important;
    background: var(--gold);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .nav-contact-btn:hover {
    background: var(--gold-light) !important;
    color: var(--dark) !important;
  }

  .nav-contact-btn::after { display: none !important; }

  /* ─── HERO ─── */
  #hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--dark);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(32,26,4,0.92) 0%, rgba(32,26,4,0.6) 50%, rgba(32,26,4,0.85) 100%),
      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="%23201a04"/><path d="M0 30h60M30 0v60" stroke="%23ffffff08" stroke-width="0.5"/></svg>');
    background-size: cover;
  }

  /* Grid overlay texture */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(184,150,62,0.08) 0%, transparent 70%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem 8rem;
    max-width: 900px;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 3.8s forwards;
  }

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

  .hero-tag span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0;
    animation: slideUp 0.9s ease-out 4s forwards;
    margin-bottom: 2rem;
  }

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


  .hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--off-white);
    line-height: 1;
    margin: 1.2rem 0 0.5rem;
    text-transform: uppercase;
  }

  .hero-name-sub {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.8rem;
  }
  .hero-sub {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(248,245,239,0.5);
    max-width: 480px;
    line-height: 1.9;
    opacity: 0;
    animation: slideUp 0.8s ease-out 4.2s forwards;
    margin-bottom: 3rem;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--off-white);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.3rem;
    transition: color 0.2s, gap 0.2s;
    opacity: 0;
    animation: slideUp 0.8s ease-out 4.4s forwards;
  }

  .hero-cta:hover { color: var(--gold); gap: 1.5rem; }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 4.6s forwards;
  }

  .hero-scroll span {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
  }

  .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out 5s infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
  }

  /* ─── SECTION BASICS ─── */
  section { position: relative; }

  .section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
  }

  .section-label span {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* ─── ABOUT / INTRO BAR ─── */
  #about-bar {
    background: var(--dark);
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-bar-left .section-label span { color: var(--gold); }

  .about-bar-left .section-title {
    color: var(--off-white);
    margin-bottom: 2rem;
  }

  .about-bar-left p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(248,245,239,0.6);
    max-width: 480px;
  }

  .about-bar-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .stat-box {
    padding: 2.5rem 2rem;
    background: rgba(184,150,62,0.06);
    border: 1px solid rgba(184,150,62,0.12);
    text-align: center;
  }

  .stat-box:first-child { background: rgba(184,150,62,0.12); }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(248,245,239,0.4);
  }

  /* ─── PRACTICE AREAS ─── */
  #areas {
    background: var(--off-white);
    padding: 7rem 4rem;
  }

  .areas-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 5rem;
  }

  .areas-header .section-title { color: var(--dark); }

  .areas-header p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 2;
    color: var(--text-muted);
    align-self: end;
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .area-card {
    background: var(--dark);
    padding: 3rem 2rem;
    cursor: default;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .area-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s;
  }

  .area-card:hover { background: #2e2508; }
  .area-card:hover::before { width: 100%; }

  .area-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(184,150,62,0.15);
    line-height: 1;
    margin-bottom: 2rem;
    display: block;
  }

  .area-icon {
    margin-bottom: 1.5rem;
    color: var(--gold);
  }

  .area-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--off-white);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .area-desc {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(248,245,239,0.5);
  }

  /* ─── ABOUT FULL ─── */
  #about {
    background: var(--cream);
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-portrait-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #2e2508 0%, #1a1205 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .about-portrait-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(32,26,4,0.6) 100%);
  }

  .about-portrait-monogram {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    color: rgba(184,150,62,0.2);
    z-index: 1;
  }

  .about-accent-box {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 180px;
    background: var(--gold);
    padding: 2rem;
    z-index: 2;
  }

  .about-accent-box .stat-num { color: var(--dark); font-size: 2.5rem; }
  .about-accent-box .stat-label { color: rgba(32,26,4,0.6); }

  .about-text .section-title {
    color: var(--dark);
    margin-bottom: 2rem;
  }

  .about-text .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .about-text p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 2;
    color: #4a3f2a;
    margin-bottom: 1.5rem;
  }

  .about-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(184,150,62,0.25);
  }

  .credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #5a4a30;
  }

  .credential::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* ─── APPROACH ─── */
  #approach {
    background: var(--dark);
    padding: 8rem 4rem;
  }

  .approach-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
  }

  .approach-header .section-title { color: var(--off-white); }

  .approach-header p {
    font-size: 0.85rem;
    line-height: 2;
    color: rgba(248,245,239,0.5);
  }

  .approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(184,150,62,0.08);
  }

  .approach-step {
    padding: 3.5rem 2.5rem;
    background: var(--dark);
    border-top: 1px solid rgba(184,150,62,0.15);
    transition: border-color 0.3s;
  }

  .approach-step:hover { border-color: var(--gold); }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1.5rem;
  }

  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--off-white);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .step-desc {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(248,245,239,0.45);
  }

  /* ─── TESTIMONIAL STRIP ─── */
  #testimonial {
    background: var(--gold);
    padding: 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
  }

  .testimonial-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(32,26,4,0.6);
  }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--dark);
    line-height: 1.4;
    position: relative;
    padding-left: 2rem;
  }

  .testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    color: rgba(32,26,4,0.2);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
  }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--off-white);
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
  }

  .contact-left .section-title {
    color: var(--dark);
    margin-bottom: 2rem;
  }

  .contact-left p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 3rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .contact-item-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .contact-item-value {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-item-value:hover { color: var(--gold); }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(184,150,62,0.3);
    padding: 0.8rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--dark);
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--gold);
  }

  .form-group textarea { resize: none; height: 100px; }

  .form-submit {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--off-white);
    background: var(--dark);
    border: none;
    padding: 1.2rem 2.5rem;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
  }

  .form-submit:hover { background: var(--dark-mid); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(184,150,62,0.12);
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--off-white);
    text-transform: uppercase;
  }

  .footer-copy {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(248,245,239,0.25);
  }

  .footer-oab {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
  }

  /* ─── WHATSAPP FLOAT ─── */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    background: #25D366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    opacity: 0;
    animation: fadeIn 0.5s ease 5s forwards;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  }

  /* ─── ANIMATIONS ─── */
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    #hero { align-items: center; }
    .hero-content { padding: 0 1.5rem 4rem; }
    #about-bar { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
    .about-bar-right { grid-template-columns: 1fr 1fr; }
    #areas { padding: 5rem 1.5rem; }
    .areas-header { grid-template-columns: 1fr; gap: 2rem; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    #about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
    .about-accent-box { right: 0; }
    #approach { padding: 5rem 1.5rem; }
    .approach-header { grid-template-columns: 1fr; gap: 2rem; }
    .approach-steps { grid-template-columns: 1fr; }
    #testimonial { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
    #contact { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  }

  /* WebP support (40% lighter) — fallback to JPG above */
  @supports (background-image: image-set(url('a.webp') 1x)) {
    #hero {
      background-image:
        linear-gradient(135deg, rgba(32,26,4,0.92) 0%, rgba(32,26,4,0.6) 50%, rgba(32,26,4,0.85) 100%),
        image-set(url('/hero-bg.webp') type('image/webp'), url('/hero-bg.jpg') type('image/jpeg')) center/cover;
    }
  }
/* ============================================
   PÁGINAS DE ÁREA (multi-page)
   ============================================ */

body.area-page {
  background: var(--off-white);
}

/* Logo fixa no nav (sem hero) */
body.area-page .intro-overlay {
  display: none !important;
}

body.area-page #navbar {
  position: fixed;
  top: 0;
  background: rgba(32, 26, 4, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Page header (substitui hero nas páginas de área) */
.area-header {
  position: relative;
  padding: 10rem 4rem 6rem;
  background: var(--dark);
  color: var(--off-white);
  overflow: hidden;
}

.area-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(32,26,4,0.85) 0%, rgba(32,26,4,0.65) 100%),
    url('/hero-bg.jpg') center/cover;
  z-index: 0;
}

@supports (background-image: image-set(url('a.webp') 1x)) {
  .area-header::before {
    background-image:
      linear-gradient(135deg, rgba(32,26,4,0.85) 0%, rgba(32,26,4,0.65) 100%),
      image-set(url('/hero-bg.webp') type('image/webp'), url('/hero-bg.jpg') type('image/jpeg')) center/cover;
  }
}

.area-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: var(--gold-pale);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  opacity: 0.4;
}

.area-number-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.area-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  max-width: 900px;
}

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

.area-lead {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(248, 245, 239, 0.85);
  max-width: 700px;
  margin-bottom: 2rem;
}

.area-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--gold);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
}

.btn-secondary:hover {
  background: rgba(184, 150, 62, 0.1);
  transform: translateY(-2px);
}

/* Body content area */
.area-body {
  padding: 5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.area-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: 3rem 0 1.5rem;
}

.area-body h2:first-child {
  margin-top: 0;
}

.area-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  margin: 2rem 0 0.75rem;
}

.area-body p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  max-width: 760px;
}

.area-body p strong {
  font-weight: 600;
  color: var(--dark);
}

.area-body ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  max-width: 760px;
}

.area-body ul li {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.area-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 1rem;
  height: 1px;
  background: var(--gold);
}

/* Service detail grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.service-item {
  padding: 1.75rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.service-item h3 {
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  background: var(--cream);
  padding: 5rem 4rem;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 3rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid rgba(32, 26, 4, 0.12);
  padding: 1.5rem 0;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding-right: 2rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-top: 1rem;
  padding-right: 2rem;
}

/* Bottom CTA */
.bottom-cta {
  background: var(--dark);
  color: var(--off-white);
  text-align: center;
  padding: 5rem 4rem;
}

.bottom-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 1rem;
}

.bottom-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(248, 245, 239, 0.75);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Other areas grid */
.other-areas {
  background: var(--off-white);
  padding: 5rem 4rem;
  border-top: 1px solid rgba(32, 26, 4, 0.1);
}

.other-areas-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.other-areas h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.other-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.other-area-link {
  display: block;
  padding: 1.5rem 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(184, 150, 62, 0.2);
  text-decoration: none;
  transition: all 0.3s;
}

.other-area-link:hover {
  background: rgba(184, 150, 62, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.other-area-link .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.other-area-link .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
}

@media (max-width: 768px) {
  .area-header { padding: 8rem 1.5rem 4rem; }
  .area-body { padding: 3rem 1.5rem; }
  .faq-section { padding: 3rem 1.5rem; }
  .bottom-cta { padding: 3rem 1.5rem; }
  .other-areas { padding: 3rem 1.5rem; }
}
