@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
  body { min-height: 100vh; overflow-x: hidden; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
  ul { list-style: none; }
  input, textarea { font: inherit; color: inherit; }
  table { border-collapse: collapse; width: 100%; }
}

@layer tokens {
  :root {
    --color-bg: #0a0b10;
    --color-bg-alt: #10121a;
    --color-bg-elevated: #171a25;
    --color-bg-elevated-2: #1e2230;
    --color-border-subtle: rgba(201, 168, 96, 0.16);
    --color-border-strong: rgba(201, 168, 96, 0.35);
    --color-gold: #c9a860;
    --color-gold-bright: #e6c983;
    --color-wine: #8a3247;
    --color-emerald: #2f6b5e;
    --color-text: #f2efe9;
    --color-text-muted: #b3aea6;
    --color-text-faint: #7c7770;

    --font-heading: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;

    --space-3xs: 0.25rem;
    --space-2xs: 0.5rem;
    --space-xs: 0.75rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --radius-xl: 40px;
    --radius-full: 999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
    --shadow-md: 0 6px 18px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.5);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.45);
    --shadow-gold: 0 0 0 1px rgba(201,168,96,0.28), 0 10px 30px rgba(201,168,96,0.08);

    --transition-fast: 0.2s ease;
    --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@layer layout {
  html, body { background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); line-height: 1.65; }
  h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; color: var(--color-text); }
  p { color: var(--color-text-muted); }
  .content-container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
  .content-container-narrow { max-width: 820px; }
  .content-section { padding: var(--space-2xl) 0; }
  main { padding-top: 88px; }
  .section-eyebrow { display: inline-block; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold); font-weight: 700; margin-bottom: var(--space-sm); }
  .section-heading { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: var(--space-md); }
  .section-subtext { color: var(--color-text-muted); max-width: 640px; }
  .section-heading-group { text-align: center; margin: 0 auto var(--space-xl); max-width: 720px; }
  .section-heading-group .section-heading { }
  .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
  .intro-grid-reverse .intro-media { order: 2; }
  .intro-grid-reverse .intro-text { order: 1; }
  .intro-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--color-border-subtle); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
  @media (max-width: 860px) {
    .intro-grid, .intro-grid-reverse { grid-template-columns: 1fr; }
    .intro-grid-reverse .intro-media, .intro-grid-reverse .intro-text { order: unset; }
  }
}

@layer components {

  
  .main-navigation {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    background: rgba(10, 11, 16, 0.97);
    border-bottom: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-med);
  }
  .main-navigation.is-scrolled { box-shadow: var(--shadow-md); }
  .main-navigation.is-scrolled-deep { box-shadow: var(--shadow-lg); }
  .nav-bar-top { max-width: 1200px; margin: 0 auto; padding: var(--space-sm) var(--space-md); display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { display: flex; align-items: center; gap: var(--space-2xs); }
  .nav-logo-image { width: 34px; height: 34px; }
  .nav-logo-text { font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 0.02em; color: var(--color-text); }
  .nav-hamburger { width: 44px; height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: var(--radius-sm); transition: background var(--transition-fast); }
  .nav-hamburger:hover { background: var(--color-bg-elevated); }
  .nav-hamburger span { width: 22px; height: 2px; background: var(--color-gold); transition: transform var(--transition-fast), opacity var(--transition-fast); }
  .nav-links-panel { max-height: 0; overflow: hidden; opacity: 0; transition: max-height var(--transition-med), opacity var(--transition-med); max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); display: flex; flex-wrap: wrap; gap: var(--space-lg); align-items: center; }
  .main-navigation.is-expanded .nav-links-panel { max-height: 300px; opacity: 1; padding-bottom: var(--space-sm); }
  .nav-link { position: relative; font-weight: 500; color: var(--color-text-muted); padding: var(--space-2xs) 0; transition: color var(--transition-fast); }
  .nav-link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--color-gold); transition: width var(--transition-med); }
  .nav-link:hover { color: var(--color-text); }
  .nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
  .nav-link.is-active { color: var(--color-gold-bright); }
  .nav-link-cta { border: 1px solid var(--color-border-strong); border-radius: var(--radius-full); padding: var(--space-2xs) var(--space-md); }
  .nav-link-cta::after { display: none; }
  .nav-link-cta:hover { background: var(--color-gold); color: var(--color-bg); }

  @media (min-width: 861px) {
    .mobile-menu-overlay { display: none; }
  }

  
  .mobile-menu-overlay {
    position: fixed; inset: 0; z-index: 900;
    background: linear-gradient(160deg, #14161f 0%, #0a0b10 70%);
    clip-path: polygon(100% 0, 100% 0, 100% 0);
    transition: clip-path 0.6s cubic-bezier(0.83, 0, 0.17, 1);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .mobile-menu-overlay.is-open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .mobile-menu-close { position: absolute; top: var(--space-md); right: var(--space-md); width: 44px; height: 44px; font-size: 1.4rem; color: var(--color-gold); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; transition: background var(--transition-fast); }
  .mobile-menu-close:hover { background: var(--color-bg-elevated); }
  .mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: var(--space-lg); }
  .mobile-menu-links a { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-text); opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease, color var(--transition-fast); }
  .mobile-menu-overlay.links-visible .mobile-menu-links a { opacity: 1; transform: translateY(0); }
  .mobile-menu-links a:hover { color: var(--color-gold-bright); }
  .mobile-menu-links a:nth-child(1) { transition-delay: 0.05s; }
  .mobile-menu-links a:nth-child(2) { transition-delay: 0.12s; }
  .mobile-menu-links a:nth-child(3) { transition-delay: 0.19s; }
  .mobile-menu-links a:nth-child(4) { transition-delay: 0.26s; }
  .mobile-menu-links a:nth-child(5) { transition-delay: 0.33s; }

  
  .cta-button { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2xs); padding: var(--space-sm) var(--space-lg); border-radius: var(--radius-full); font-weight: 700; font-size: 0.95rem; transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast); min-height: 48px; }
  .cta-button-primary { background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold)); color: #1a1408; box-shadow: var(--shadow-gold); }
  .cta-button-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(201,168,96,0.25); }
  .cta-button-secondary { border: 1px solid var(--color-border-strong); color: var(--color-text); }
  .cta-button-secondary:hover { background: var(--color-bg-elevated); transform: translateY(-2px); }

  
  .welcome-banner { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
  .welcome-banner-media { position: absolute; inset: 0; z-index: 0; }
  .welcome-banner-image { width: 100%; height: 100%; object-fit: cover; }
  .welcome-banner-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,16,0.55) 0%, rgba(10,11,16,0.82) 60%, rgba(10,11,16,0.97) 100%); }
  .welcome-banner-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: var(--space-2xl) var(--space-md); text-align: center; }
  .welcome-banner-heading { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: var(--space-md); }
  .welcome-banner-text { font-size: 1.15rem; color: var(--color-text-muted); margin-bottom: var(--space-lg); }
  .welcome-banner-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

  .page-header-banner { padding: calc(var(--space-2xl) + 40px) 0 var(--space-xl); text-align: center; border-bottom: 1px solid var(--color-border-subtle); background: linear-gradient(180deg, var(--color-bg-alt), var(--color-bg)); }
  .page-header-heading { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: var(--space-md); }
  .page-header-text { max-width: 640px; margin: 0 auto; color: var(--color-text-muted); }

  
  .service-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .service-showcase-card { background: var(--color-bg-elevated); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); padding: var(--space-lg); transition: box-shadow var(--transition-med), border-color var(--transition-med), transform var(--transition-med); }
  .service-showcase-card:hover { border-color: var(--color-border-strong); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
  .service-showcase-toggle { width: 100%; display: flex; align-items: center; gap: var(--space-md); text-align: left; }
  .service-showcase-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(201,168,96,0.1); color: var(--color-gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
  .service-showcase-title { flex: 1; font-family: var(--font-heading); font-size: 1.25rem; }
  .service-showcase-chevron { color: var(--color-gold); transition: transform var(--transition-med); }
  .service-showcase-content { max-height: 0; overflow: hidden; transition: max-height var(--transition-med), padding-top var(--transition-med); padding-top: 0; }
  .service-showcase-content p { margin-bottom: var(--space-sm); font-size: 0.96rem; }
  .service-showcase-card.is-expanded .service-showcase-content { max-height: 400px; padding-top: var(--space-md); }
  .service-showcase-card.is-expanded .service-showcase-chevron { transform: rotate(180deg); }
  @media (hover:hover) {
    .service-showcase-card:hover .service-showcase-content { max-height: 400px; padding-top: var(--space-md); }
    .service-showcase-card:hover .service-showcase-chevron { transform: rotate(180deg); }
  }
  @media (max-width: 720px) { .service-showcase-grid { grid-template-columns: 1fr; } }

  
  .workflow-teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
  .workflow-teaser-card { background: var(--color-bg-elevated); border-left: 3px solid var(--color-gold); border-radius: var(--radius-md); padding: var(--space-md); transition: transform var(--transition-med), box-shadow var(--transition-med); }
  .workflow-teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .workflow-teaser-number { font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-gold); display: block; margin-bottom: var(--space-2xs); }
  .workflow-teaser-card h3 { font-size: 1.1rem; margin-bottom: var(--space-2xs); }
  .workflow-teaser-card p { font-size: 0.92rem; }
  @media (max-width: 900px) { .workflow-teaser-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .workflow-teaser-grid { grid-template-columns: 1fr; } }

  
  .workflow-steps { display: flex; flex-direction: column; gap: var(--space-lg); }
  .workflow-step { display: flex; gap: var(--space-lg); align-items: flex-start; background: var(--color-bg-elevated); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); padding: var(--space-lg); transition: transform var(--transition-med), box-shadow var(--transition-med); }
  .workflow-step:hover { box-shadow: var(--shadow-gold); }
  .workflow-step:nth-child(1) { margin-right: 0; }
  .workflow-step:nth-child(2) { margin-left: var(--space-md); }
  .workflow-step:nth-child(3) { margin-left: calc(var(--space-md) * 2); }
  .workflow-step:nth-child(4) { margin-left: calc(var(--space-md) * 3); }
  .workflow-step:nth-child(5) { margin-left: calc(var(--space-md) * 4); }
  .workflow-step:nth-child(6) { margin-left: calc(var(--space-md) * 5); }
  @media (max-width: 720px) {
    .workflow-step, .workflow-step:nth-child(1), .workflow-step:nth-child(2), .workflow-step:nth-child(3), .workflow-step:nth-child(4), .workflow-step:nth-child(5), .workflow-step:nth-child(6) { margin-left: 0; }
  }
  .workflow-step-marker { width: 56px; height: 56px; border-radius: var(--radius-full); border: 1px solid var(--color-border-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .workflow-step-marker span { font-family: var(--font-heading); color: var(--color-gold-bright); font-size: 1.2rem; }
  .workflow-step-body h3 { margin-bottom: var(--space-2xs); font-size: 1.2rem; }
  .workflow-step-body p { font-size: 0.96rem; }

  
  .audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
  .audience-card { background: var(--color-bg-elevated); border-top: 3px solid var(--color-gold); border-radius: var(--radius-md); padding: var(--space-lg); transition: transform var(--transition-med), box-shadow var(--transition-med); }
  .audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .audience-card-icon { display: inline-flex; width: 46px; height: 46px; border-radius: var(--radius-md); align-items: center; justify-content: center; background: rgba(201,168,96,0.1); color: var(--color-gold); margin-bottom: var(--space-sm); font-size: 1.1rem; }
  .audience-card h3 { font-size: 1.1rem; margin-bottom: var(--space-2xs); }
  .audience-card p { font-size: 0.94rem; }
  @media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .audience-grid { grid-template-columns: 1fr; } }

  
  .highlight-quote { position: relative; background: linear-gradient(135deg, rgba(138,50,71,0.28), rgba(201,168,96,0.08)); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); padding: var(--space-xl) var(--space-xl); text-align: center; }
  .highlight-quote::before { content: "\201C"; font-family: var(--font-heading); font-size: 6rem; color: var(--color-gold); position: absolute; top: -10px; left: 24px; line-height: 1; opacity: 0.7; }
  .highlight-quote p { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.8vw, 1.9rem); color: var(--color-text); line-height: 1.4; }

  
  .mini-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
  .blog-preview-card { background: var(--color-bg-elevated); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition-med), box-shadow var(--transition-med); }
  .blog-preview-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .blog-preview-image { width: 100%; height: 200px; object-fit: cover; }
  .blog-preview-body { padding: var(--space-md); }
  .blog-preview-title { font-size: 1.15rem; margin-bottom: var(--space-2xs); }
  .blog-preview-excerpt { font-size: 0.92rem; margin-bottom: var(--space-md); }
  .blog-preview-link { color: var(--color-gold); font-weight: 700; display: inline-flex; align-items: center; gap: var(--space-3xs); transition: gap var(--transition-fast); }
  .blog-preview-link:hover { gap: var(--space-2xs); color: var(--color-gold-bright); }
  @media (max-width: 900px) { .mini-blog-grid { grid-template-columns: 1fr; } }

  .blog-modal { position: fixed; inset: 0; background: rgba(10,11,16,0.85); z-index: 1000; display: none; align-items: center; justify-content: center; padding: var(--space-md); }
  .blog-modal.is-open { display: flex; }
  .blog-modal-box { background: var(--color-bg-elevated); border: 1px solid var(--color-border-strong); border-radius: var(--radius-lg); max-width: 640px; width: 100%; max-height: 84vh; overflow-y: auto; padding: var(--space-xl); position: relative; }
  .blog-modal-box h3 { font-size: 1.5rem; margin-bottom: var(--space-md); }
  .blog-modal-box p { margin-bottom: var(--space-sm); font-size: 0.96rem; }
  .blog-modal-close { position: absolute; top: var(--space-md); right: var(--space-md); width: 40px; height: 40px; border-radius: var(--radius-full); border: 1px solid var(--color-border-subtle); display: flex; align-items: center; justify-content: center; color: var(--color-gold); transition: background var(--transition-fast); }
  .blog-modal-close:hover { background: var(--color-bg-elevated-2); }

  
  .faq-accordion { display: flex; flex-direction: column; gap: var(--space-sm); }
  .faq-item { background: var(--color-bg-elevated); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-md); overflow: hidden; }
  .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: var(--space-md); text-align: left; font-weight: 700; font-size: 1rem; }
  .faq-question-icon { color: var(--color-gold); transition: transform var(--transition-med); flex-shrink: 0; }
  .faq-item.is-open .faq-question-icon { transform: rotate(45deg); }
  .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--transition-med); }
  .faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
  .faq-answer > p { overflow: hidden; padding: 0 var(--space-md); font-size: 0.95rem; }
  .faq-item.is-open .faq-answer > p { padding: 0 var(--space-md) var(--space-md); }
  .faq-answer { overflow: hidden; }

  
  .pricing-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); align-items: stretch; }
  .pricing-card { background: var(--color-bg-elevated); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); padding: var(--space-lg); display: flex; flex-direction: column; position: relative; transition: transform var(--transition-med), box-shadow var(--transition-med); }
  .pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .pricing-card-featured { border-color: var(--color-border-strong); box-shadow: var(--shadow-gold); }
  .pricing-card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--color-gold); color: #1a1408; font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: var(--radius-full); }
  .pricing-card-name { font-size: 1.4rem; margin-bottom: var(--space-2xs); }
  .pricing-card-price { font-family: var(--font-heading); font-size: 1.7rem; color: var(--color-gold-bright); margin-bottom: var(--space-2xs); }
  .pricing-card-price span { font-family: var(--font-body); font-size: 0.85rem; color: var(--color-text-muted); }
  .pricing-card-description { font-size: 0.9rem; margin-bottom: var(--space-md); }
  .pricing-card-features { display: flex; flex-direction: column; gap: var(--space-xs); margin-bottom: var(--space-lg); flex-grow: 1; }
  .pricing-card-features li { display: flex; align-items: flex-start; gap: var(--space-2xs); font-size: 0.88rem; color: var(--color-text-muted); }
  .pricing-card-features li i { color: var(--color-gold); margin-top: 3px; }
  .pricing-card-cta { width: 100%; }
  @media (max-width: 1000px) { .pricing-tiers { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .pricing-tiers { grid-template-columns: 1fr; } }

  .plain-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
  .plain-list li { font-size: 0.96rem; color: var(--color-text-muted); padding-left: var(--space-md); position: relative; }
  .plain-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--color-gold); }
  .plain-list strong { color: var(--color-text); }

  
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-xl); align-items: start; }
  .contact-details-list { display: flex; flex-direction: column; gap: var(--space-md); margin: var(--space-md) 0 var(--space-lg); }
  .contact-details-list li { display: flex; align-items: center; gap: var(--space-sm); font-size: 0.98rem; }
  .contact-details-list i { color: var(--color-gold); width: 20px; }
  .contact-details-list a:hover { color: var(--color-gold-bright); }
  .contact-map-wrapper { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border-subtle); }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

  .inquiry-form-panel { background: var(--color-bg-elevated); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); padding: var(--space-lg); }
  .inquiry-form-section { border-bottom: 1px solid var(--color-border-subtle); }
  .inquiry-form-section:last-child { border-bottom: none; }
  .inquiry-form-section-header { width: 100%; display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-md) 0; text-align: left; }
  .inquiry-form-section-number { width: 30px; height: 30px; border-radius: var(--radius-full); border: 1px solid var(--color-border-strong); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--color-gold); flex-shrink: 0; }
  .inquiry-form-section-title { flex: 1; font-weight: 700; }
  .inquiry-form-section-header i { color: var(--color-gold); transition: transform var(--transition-med); }
  .inquiry-form-section.is-open .inquiry-form-section-header i { transform: rotate(180deg); }
  .inquiry-form-section-body { max-height: 0; overflow: hidden; transition: max-height var(--transition-med), padding var(--transition-med); display: flex; flex-direction: column; gap: var(--space-2xs); }
  .inquiry-form-section.is-open .inquiry-form-section-body { max-height: 600px; padding-bottom: var(--space-md); }
  .inquiry-form-section-body label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: var(--space-xs); }
  .inquiry-form-section-body input[type="text"], .inquiry-form-section-body input[type="email"], .inquiry-form-section-body textarea {
    background: var(--color-bg); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-sm); padding: var(--space-sm); color: var(--color-text); transition: border-color var(--transition-fast); min-height: 44px;
  }
  .inquiry-form-section-body input:focus, .inquiry-form-section-body textarea:focus { outline: none; border-color: var(--color-gold); }
  .inquiry-form-section-body textarea { resize: vertical; min-height: 100px; }
  .inquiry-form-checkbox-label { display: flex; align-items: flex-start; gap: var(--space-sm); font-size: 0.88rem; color: var(--color-text-muted); }
  .inquiry-form-checkbox-label input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--color-gold); }
  .inquiry-form-checkbox-label a { color: var(--color-gold); }
  .inquiry-form-submit { margin-top: var(--space-md); width: 100%; }

  .contact-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); position: relative; }
  .contact-timeline::before { content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 1px; background: var(--color-border-subtle); display: none; }
  .contact-timeline-item { position: relative; padding-top: var(--space-lg); }
  .contact-timeline-dot { position: absolute; top: 0; left: 0; width: 14px; height: 14px; border-radius: var(--radius-full); background: var(--color-gold); box-shadow: 0 0 0 4px rgba(201,168,96,0.15); }
  .contact-timeline-item h3 { font-size: 1.05rem; margin-bottom: var(--space-2xs); }
  .contact-timeline-item p { font-size: 0.9rem; }
  @media (max-width: 900px) { .contact-timeline { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .contact-timeline { grid-template-columns: 1fr; } }

  .closing-cta-section { background: linear-gradient(135deg, rgba(138,50,71,0.22), rgba(201,168,96,0.05)); border-top: 1px solid var(--color-border-subtle); border-bottom: 1px solid var(--color-border-subtle); }
  .closing-cta-container { text-align: center; max-width: 640px; }
  .closing-cta-heading { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: var(--space-sm); }
  .closing-cta-text { margin-bottom: var(--space-lg); }

  
  .page-footer { background: var(--color-bg-alt); border-top: 1px solid var(--color-border-subtle); padding: var(--space-2xl) var(--space-md) var(--space-lg); }
  .footer-content { max-width: 720px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
  .footer-logo { display: flex; align-items: center; gap: var(--space-2xs); font-family: var(--font-heading); font-size: 1.4rem; }
  .footer-logo-image { width: 32px; height: 32px; }
  .footer-tagline { color: var(--color-text-muted); font-size: 0.95rem; }
  .footer-navigation { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); }
  .footer-navigation a { color: var(--color-text-muted); font-size: 0.92rem; transition: color var(--transition-fast); }
  .footer-navigation a:hover { color: var(--color-gold-bright); }
  .footer-contact-details { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); font-size: 0.9rem; color: var(--color-text-muted); }
  .footer-contact-details i { color: var(--color-gold); margin-right: var(--space-3xs); }
  .footer-contact-details a:hover { color: var(--color-gold-bright); }
  .footer-legal-links { display: flex; gap: var(--space-md); flex-wrap: wrap; justify-content: center; border-top: 1px solid var(--color-border-subtle); padding-top: var(--space-md); width: 100%; }
  .footer-legal-links a { font-size: 0.82rem; color: var(--color-text-faint); transition: color var(--transition-fast); }
  .footer-legal-links a:hover { color: var(--color-gold); }
  .footer-copyright-bar { font-size: 0.8rem; color: var(--color-text-faint); }

  
  .cookie-consent-link { position: fixed; bottom: var(--space-md); left: var(--space-md); z-index: 700; font-size: 0.8rem; color: var(--color-text-faint); background: var(--color-bg-elevated); border: 1px solid var(--color-border-subtle); padding: var(--space-2xs) var(--space-sm); border-radius: var(--radius-full); display: flex; align-items: center; gap: var(--space-3xs); transition: color var(--transition-fast), border-color var(--transition-fast); }
  .cookie-consent-link:hover { color: var(--color-gold-bright); border-color: var(--color-border-strong); }
  .cookie-consent-link.is-pulsing { animation: cookiePulse 1.6s ease-in-out 3; }
  @keyframes cookiePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,96,0.4); } 50% { box-shadow: 0 0 0 8px rgba(201,168,96,0); } }

  .cookie-consent-modal { position: fixed; inset: 0; background: rgba(10,11,16,0.85); z-index: 1100; display: none; align-items: center; justify-content: center; padding: var(--space-md); }
  .cookie-consent-modal.is-open { display: flex; }
  .cookie-consent-modal-box { background: var(--color-bg-elevated); border: 1px solid var(--color-border-strong); border-radius: var(--radius-lg); max-width: 520px; width: 100%; max-height: 86vh; overflow-y: auto; padding: var(--space-xl); }
  .cookie-consent-modal-box h2 { font-size: 1.5rem; margin-bottom: var(--space-md); }
  .cookie-consent-modal-box > p { font-size: 0.92rem; margin-bottom: var(--space-md); }
  .cookie-consent-category { border-top: 1px solid var(--color-border-subtle); padding: var(--space-sm) 0; }
  .cookie-consent-category-header { display: flex; justify-content: space-between; align-items: center; font-weight: 700; margin-bottom: var(--space-3xs); }
  .cookie-consent-category-header input { width: 20px; height: 20px; accent-color: var(--color-gold); }
  .cookie-consent-category p { font-size: 0.85rem; }
  .cookie-consent-modal-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }
  .cookie-consent-button { padding: var(--space-xs) var(--space-md); border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 700; transition: transform var(--transition-fast); min-height: 44px; }
  .cookie-consent-button-ghost { border: 1px solid var(--color-border-subtle); color: var(--color-text-muted); }
  .cookie-consent-button-ghost:hover { border-color: var(--color-border-strong); color: var(--color-text); }
  .cookie-consent-button-primary { background: var(--color-gold); color: #1a1408; }
  .cookie-consent-button-primary:hover { transform: translateY(-2px); }

  
  .legal-page h1 { margin-bottom: var(--space-2xs); }
  .legal-updated { font-size: 0.85rem; color: var(--color-text-faint); margin-bottom: var(--space-lg); }
  .legal-page h2 { font-size: 1.3rem; margin: var(--space-lg) 0 var(--space-sm); color: var(--color-gold-bright); }
  .legal-page p { margin-bottom: var(--space-sm); font-size: 0.96rem; }
  .legal-page a { color: var(--color-gold); }
  .legal-info-table { margin: var(--space-lg) 0; border: 1px solid var(--color-border-subtle); border-radius: var(--radius-md); overflow: hidden; }
  .legal-info-table th, .legal-info-table td { padding: var(--space-sm) var(--space-md); text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--color-border-subtle); }
  .legal-info-table th { color: var(--color-text-muted); font-weight: 500; width: 40%; background: var(--color-bg-elevated); }
  .legal-info-table tr:last-child th, .legal-info-table tr:last-child td { border-bottom: none; }

  
  .thanks-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
  .thanks-content { display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
  .thanks-dot { width: 22px; height: 22px; border-radius: var(--radius-full); background: var(--color-gold); transform: scale(0); animation: thanksDotScale 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards; }
  .thanks-heading { font-size: clamp(1.6rem, 4vw, 2.4rem); opacity: 0; animation: thanksFadeIn 0.8s ease forwards 0.6s; }
  .thanks-home-link { color: var(--color-gold); font-weight: 700; opacity: 0; animation: thanksFadeIn 0.8s ease forwards 1.4s; border-bottom: 1px solid transparent; transition: border-color var(--transition-fast); }
  .thanks-home-link:hover { border-color: var(--color-gold); }
  @keyframes thanksDotScale { to { transform: scale(1); } }
  @keyframes thanksFadeIn { to { opacity: 1; } }
}

@layer utilities {
  .text-center { text-align: center; }
  @media (max-width: 720px) {
    .service-showcase-grid, .pricing-tiers { gap: var(--space-md); }
    .content-section { padding: var(--space-xl) 0; }
  }
}