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

  :root {
    --deep: #0D0D0B;
    --ink: #111110;
    --surface: #141412;
    --card: #1A1A17;
    --card-hover: #2A2620;
    --border: rgba(139,122,46,0.20);
    --border-gold: rgba(139,122,46,0.42);
    --gold: #8B7A2E;
    --gold-light: #A89340;
    --gold-pale: #C8AE62;
    --gold-dim: rgba(139,122,46,0.13);
    --text: #E8E4D9;
    --text-muted: #9E9A8E;
    --text-faint: #5A574F;
    --white: #F5F2EA;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
    --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--deep);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── UTILITY ── */
  .gold { color: var(--gold); }
  .serif { font-family: var(--serif); }

  /* ── ORNAMENT ── */
  .ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
  }
  .ornament::before, .ornament::after {
    content: '';
    flex: 1;
    height: 0.5px;
    background: linear-gradient(to right, transparent, var(--gold));
    max-width: 80px;
  }
  .ornament::after { background: linear-gradient(to left, transparent, var(--gold)); }
  .ornament-dot {
    width: 5px; height: 5px;
    border: 0.5px solid var(--gold);
    transform: rotate(45deg);
    background: transparent;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 48px;
    background: linear-gradient(to bottom, rgba(13,13,11,0.97) 0%, rgba(13,13,11,0.0) 100%);
    transition: background var(--transition);
  }
  nav.scrolled { background: rgba(13,13,11,0.97); border-bottom: 0.5px solid var(--border); }
  .nav-logo {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--white);
    text-decoration: none;
    line-height: 1.2;
  }
  .nav-logo span { display: block; font-size: 11px; letter-spacing: 0.22em; color: var(--gold); font-family: var(--sans); font-weight: 400; text-transform: uppercase; margin-top: 2px; }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-links a { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
  .nav-links a:hover { color: var(--gold); text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
  .nav-cta {
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); border: 0.5px solid var(--border-gold);
    padding: 10px 22px; text-decoration: none;
    transition: all var(--transition);
  }
  .nav-cta:hover { background: var(--gold); color: var(--deep); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 0.5px; background: var(--text-muted); transition: var(--transition); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 30%, rgba(139,122,46,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 70%, rgba(139,122,46,0.04) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 80% 20%, rgba(139,122,46,0.04) 0%, transparent 60%);
  }
  .hero-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(139,122,46,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(139,122,46,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  }
  .hero-content { position: relative; z-index: 2; max-width: 780px; }
  .hero-eyebrow {
    font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 32px;
    display: flex; align-items: center; justify-content: center; gap: 16px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 28px; height: 0.5px; background: var(--gold); opacity: 0.6; }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(46px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 12px;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-subtitle {
    font-family: var(--serif);
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
  }
  .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
  .btn-primary {
    background: var(--gold);
    color: var(--deep);
    font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 16px 38px; text-decoration: none; font-weight: 500;
    transition: all var(--transition);
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-pale); }
  .btn-ghost {
    border: 0.5px solid var(--border-gold);
    color: var(--gold);
    font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 16px 38px; text-decoration: none; font-weight: 400;
    transition: all var(--transition);
    display: inline-block;
  }
  .btn-ghost:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold-pale); }
  .hero-availability {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-faint);
  }
  .pulse {
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
    position: relative; flex-shrink: 0;
    animation: pulse 2.4s ease infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(139,122,46,0.4)} 50%{opacity:.7;box-shadow:0 0 0 6px rgba(139,122,46,0)} }

  /* ── SCROLL CARET ── */
  .scroll-caret {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    animation: float 2.8s ease-in-out infinite;
  }
  @keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
  .scroll-caret span { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-faint); }
  .caret-line { width: 0.5px; height: 30px; background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%); }

  /* ── SECTION BASE ── */
  section { padding: 100px 24px; }
  .container { max-width: 1140px; margin: 0 auto; }
  .section-label {
    font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px; display: block;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300; line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .section-body {
    font-size: 17px; line-height: 1.8; color: var(--text-muted);
    max-width: 560px; font-weight: 300;
  }
  .divider {
    width: 100%; height: 0.5px;
    background: linear-gradient(to right, transparent, var(--border-gold), transparent);
    margin: 0;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--surface);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 36px 24px;
  }
  .trust-items {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
    max-width: 1000px; margin: 0 auto;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 36px;
    flex: 1; min-width: 180px;
    border-right: 0.5px solid var(--border);
    justify-content: center;
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon { font-size: 18px; color: var(--gold); opacity: 0.8; flex-shrink: 0; }
  .trust-text { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); line-height: 1.5; }
  .trust-text strong { display: block; color: var(--white); font-weight: 400; margin-bottom: 1px; }

  /* ── PHILOSOPHY ── */
  .philosophy { background: var(--surface); }
  .philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .philosophy-quote {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.45;
    border-left: 1px solid var(--gold);
    padding-left: 32px;
    margin: 36px 0;
  }
  .philosophy-signature {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-top: 28px;
  }
  .philosophy-image-mock {
    aspect-ratio: 4/5;
    background: var(--card);
    border: 0.5px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .philosophy-image-mock::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(139,122,46,0.08) 0%, transparent 70%);
  }
  .image-placeholder {
    text-align: center;
    position: relative; z-index: 2;
  }
  .image-placeholder .cross {
    width: 40px; height: 40px;
    border: 0.5px solid var(--border-gold);
    margin: 0 auto 16px;
    position: relative; transform: rotate(45deg);
  }
  .image-placeholder .cross::before {
    content: '';
    position: absolute; inset: 8px;
    border: 0.5px solid var(--border-gold);
  }
  .image-placeholder p { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }
  .corner-ornament {
    position: absolute;
    width: 24px; height: 24px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.4;
  }
  .corner-ornament.tl { top: 16px; left: 16px; border-width: 0.5px 0 0 0.5px; }
  .corner-ornament.tr { top: 16px; right: 16px; border-width: 0.5px 0.5px 0 0; }
  .corner-ornament.bl { bottom: 16px; left: 16px; border-width: 0 0 0.5px 0.5px; }
  .corner-ornament.br { bottom: 16px; right: 16px; border-width: 0 0.5px 0.5px 0; }

  /* ── SERVICES ── */
  .services-header { text-align: center; max-width: 620px; margin: 0 auto 72px; }
  .services-header .section-body { margin: 0 auto; text-align: center; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border); }
  .service-card {
    background: var(--card);
    padding: 48px 36px;
    position: relative;
    transition: background var(--transition), transform var(--transition);
    cursor: default;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2.5px;
    background: var(--gold-light);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
  }
  .service-card:hover { background: var(--card-hover); }
  /* scoped above .fade-up.visible, which resets transform at equal specificity */
  .services-grid .service-card:hover { transform: translateY(-2px); }
  .service-card:hover .service-num { opacity: 1; }
  .service-card:hover .service-icon { border-color: var(--border-gold); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num {
    font-family: var(--serif);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 28px;
    opacity: 0.7;
  }
  .service-icon {
    width: 42px; height: 42px;
    border: 0.5px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }
  .service-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1; }
  .service-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .service-desc { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 28px; font-weight: 300; }
  .service-link {
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: gap var(--transition);
  }
  .service-link:hover { gap: 14px; color: var(--gold-pale); }
  .service-link::after { content: '→'; }

  /* ── PROCESS ── */
  .process { background: var(--surface); }
  .process-grid { display: grid; grid-template-columns: 1fr; max-width: 680px; margin-top: 64px; }
  .process-steps { display: flex; flex-direction: column; gap: 0; }
  .process-step { display: flex; gap: 28px; padding: 32px 0; border-bottom: 0.5px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .step-num {
    font-family: var(--serif); font-style: italic;
    font-size: 42px; font-weight: 300;
    color: var(--gold); opacity: 0.3;
    line-height: 1; flex-shrink: 0;
    width: 52px;
  }
  .step-content h3 { font-family: var(--serif); font-size: 23px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
  .step-content p { font-size: 16px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
  .process-aside {
    position: sticky; top: 100px;
  }
  .process-card {
    background: var(--card);
    border: 0.5px solid var(--border);
    padding: 40px;
    position: relative;
  }
  .process-card .corner-ornament { opacity: 0.25; }
  .process-card-label { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .process-card-title { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
  .process-card-body { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
  .process-card-phone {
    font-family: var(--serif); font-size: 30px; font-weight: 300;
    color: var(--gold-light); letter-spacing: 0.04em;
    margin-bottom: 6px;
  }
  .process-card-phone-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }

  /* ── TESTIMONIALS ── */
  .testimonials-header { text-align: center; max-width: 580px; margin: 0 auto 72px; }
  .testimonials-header .section-body { margin: 0 auto; text-align: center; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card {
    background: var(--card); border: 0.5px solid var(--border);
    padding: 36px;
    position: relative;
  }
  .quote-mark {
    font-family: var(--serif); font-size: 72px; font-weight: 300;
    color: var(--gold); opacity: 0.18;
    line-height: 0.6;
    margin-bottom: 20px;
    display: block;
  }
  .testimonial-text { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--text); line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 0.5px solid var(--border); padding-top: 20px; }
  .author-initials {
    width: 36px; height: 36px; flex-shrink: 0;
    border: 0.5px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 500; color: var(--gold); letter-spacing: 0.05em;
  }
  .author-name { font-size: 15px; font-weight: 500; color: var(--white); letter-spacing: 0.04em; }
  .author-location { font-size: 13px; color: var(--text-faint); margin-top: 2px; }

  /* ── STATS ── */
  .stats { background: var(--surface); padding: 80px 24px; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
  .stat-item {
    background: var(--surface);
    padding: 52px 36px;
    text-align: center;
    min-width: 0;
  }
  .stat-num {
    font-family: var(--serif); font-size: clamp(40px, 5vw, 62px);
    font-weight: 300; color: var(--gold); line-height: 1;
    margin-bottom: 10px;
  }
  .stat-num sup { font-size: 0.45em; vertical-align: super; }
  .stat-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }

  /* ── LOCATIONS ── */
  .locations-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
  .locations-header .section-body { margin: 0 auto; text-align: center; }
  .locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .location-card {
    transition: border-color var(--transition), transform var(--transition);
    background: var(--card); border: 0.5px solid var(--border);
    padding: 36px;
    transition: border-color var(--transition);
  }
  .location-card:hover { border-color: var(--gold); }
  .locations-grid .location-card:hover { transform: translateY(-2px); }
  .location-badge {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); background: var(--gold-dim);
    border: 0.5px solid var(--border-gold);
    padding: 5px 12px;
    display: inline-block; margin-bottom: 24px;
  }
  .location-name { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
  .location-address { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-weight: 300; }
  .location-phone { font-size: 17px; color: var(--gold-light); letter-spacing: 0.04em; }

  /* ── CONTACT CTA ── */
  .contact-cta {
    background: var(--card);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
  }
  .contact-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(139,122,46,0.07) 0%, transparent 60%);
  }
  .contact-cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
  .contact-cta-title { font-family: var(--serif); font-size: clamp(34px, 5vw, 60px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
  .contact-cta-title em { font-style: italic; color: var(--gold-light); }
  .contact-cta-body { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 48px; font-weight: 300; }
  .contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .contact-divider { display: flex; align-items: center; gap: 20px; margin: 40px auto; max-width: 360px; }
  .contact-divider::before, .contact-divider::after { content: ''; flex: 1; height: 0.5px; background: var(--border); }
  .contact-divider span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }
  .emergency-number { font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); font-weight: 300; color: var(--gold-light); letter-spacing: 0.05em; }
  .emergency-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); margin-top: 6px; }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    border-top: 0.5px solid var(--border);
    padding: 72px 24px 40px;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-brand-name { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
  .footer-brand-sub { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-brand-body { font-size: 15px; color: var(--text-faint); line-height: 1.7; font-weight: 300; }
  .footer-col-title { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 15px; color: var(--text-faint); text-decoration: none; transition: color var(--transition); }
  .footer-links a:hover { color: var(--gold-pale); }
  .footer-bottom {
    border-top: 0.5px solid var(--border);
    padding-top: 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
  }
  .footer-copyright { font-size: 13px; color: var(--text-faint); text-align: right; }
  
  .footer-logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; justify-content: flex-start; }
  .footer-logo-link img { width: 36px; height: 36px; object-fit: contain; opacity: 0.7; transition: opacity var(--transition); }
  .footer-logo-link:hover img { opacity: 1; }
  .footer-crafted { font-size: 13px; color: var(--text-faint); text-align: center; white-space: nowrap; }
  .footer-crafted a { color: var(--text-faint); text-decoration: none; transition: color var(--transition); }
  .footer-crafted a:hover { color: var(--gold); }

  /* ── FADE-IN ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1);
  }
  .fade-up.visible { opacity: 1; transform: none; }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.4s; }
  .fade-up:nth-child(6) { transition-delay: 0.5s; }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }

    .hero { padding: 100px 20px 72px; }

    .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
    .philosophy-image-mock { aspect-ratio: 16/9; }

    .services-grid { grid-template-columns: 1fr; }

    .process-grid { grid-template-columns: 1fr; gap: 48px; }
    .process-aside { position: static; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .locations-grid { grid-template-columns: 1fr; }

    .trust-items { flex-direction: column; }
    .trust-item { border-right: none; border-bottom: 0.5px solid var(--border); }
    .trust-item:last-child { border-bottom: none; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { grid-template-columns: 1fr; text-align: center; }
    .footer-copyright { text-align: center; }
    .footer-crafted { text-align: center; }
    .footer-logo-link { justify-content: center; }
  }

  @media (max-width: 600px) {
    section { padding: 72px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 40px 14px; }
    .stat-label { letter-spacing: 0.12em; font-size: 12px; overflow-wrap: break-word; }
    .footer-top { grid-template-columns: 1fr; }
  }

  /* ── FLOATING BUTTONS ── */
  .float-buttons {
    position: fixed;
    bottom: 32px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 200;
    transition: bottom 0.3s ease;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), opacity 0.3s ease;
    border: none;
    outline: none;
  }
  .float-btn:hover { transform: scale(1.1); }
  .float-btn svg { width: 20px; height: 20px; }
  .float-wa {
    background: var(--gold);
  }
  .float-wa svg { stroke: var(--deep); fill: none; }
  .float-top {
    background: var(--card);
    border: 0.5px solid var(--border-gold);
  }
  .float-top svg { stroke: var(--gold); fill: none; }
  .float-btn-hidden { opacity: 0; pointer-events: none; }
  @media (max-width: 600px) {
    .float-buttons { bottom: 24px; right: 16px; }
    .float-btn { width: 46px; height: 46px; }
  }
  .float-buttons.above-footer { bottom: var(--footer-clearance, 32px); }

  /* --- accessibility & motion --- */
  a:focus-visible, button:focus-visible, .hamburger:focus-visible {
    outline: 2px solid var(--gold-pale);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 200;
    background: var(--card); color: var(--text);
    border: 0.5px solid var(--border-gold);
    padding: 12px 20px; font-size: 13px; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    transition: top 0.25s ease;
  }
  .skip-link:focus { top: 16px; }

  .fade-up:nth-child(7) { transition-delay: 0.15s; }
  .fade-up:nth-child(8) { transition-delay: 0.25s; }
  .fade-up:nth-child(9) { transition-delay: 0.35s; }

  /* content must never be trapped invisible if JS or the observer fails */
  .no-js .fade-up { opacity: 1; transform: none; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .fade-up { opacity: 1 !important; transform: none !important; }
  }

  /* --- location cards: real, callable contact on every card --- */
  .location-phone a,
  a.location-phone {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 0.5px solid transparent;
    transition: border-color var(--transition), color var(--transition);
  }
  .location-phone a:hover,
  a.location-phone:hover {
    color: var(--gold-pale);
    border-bottom-color: var(--border-gold);
  }
  a.location-phone {
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0.04em;
  }

  .hamburger { background: none; border: none; padding: 0; }
  /* --- founder credentials --- */
  .philosophy-credentials {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-faint);
    font-weight: 400;
    margin-top: 8px;
  }

  /* --- catering menu --- */
  .catering-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 0.5px solid var(--border);
    margin-top: 64px;
  }
  .menu-col {
    background: var(--surface);
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .menu-group { padding: 44px 34px; }
  .menu-group + .menu-group { border-top: 0.5px solid var(--border); }
  .menu-group-title {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 16px;
    margin-bottom: 22px;
    border-bottom: 0.5px solid var(--border);
  }
  .menu-list { list-style: none; }
  .menu-list li {
    font-size: 16px;
    line-height: 2.05;
    color: var(--text-muted);
    font-weight: 300;
  }
  .catering-note {
    margin-top: 44px;
    text-align: center;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-faint);
    font-weight: 300;
  }
  .catering-cta { margin-top: 34px; text-align: center; }

  /* --- office lines under the emergency number --- */
  .contact-lines {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-lines a {
    font-size: 17px;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 0.5px solid transparent;
    transition: color var(--transition), border-color var(--transition);
  }
  .contact-lines a:hover { color: var(--gold-pale); border-bottom-color: var(--border-gold); }
  .contact-lines-label {
    margin-top: 26px;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-faint);
  }

  /* --- directions link on the office card --- */
  .location-directions {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap var(--transition), color var(--transition);
  }
  .location-directions::after { content: '\2192'; }
  .location-directions:hover { gap: 14px; color: var(--gold-pale); }

  @media (max-width: 900px) {
    .catering-menu { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .menu-group { padding: 34px 26px; }
    .contact-lines { gap: 18px; flex-direction: column; }
  }


  /* --- WhatsApp enquiry form --- */
  .wa-form { max-width: 620px; margin: 0 auto; text-align: left; }
  .wa-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .wa-field { margin-bottom: 18px; }
  .wa-field label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 10px;
    font-weight: 400;
  }
  .wa-field input,
  .wa-field select,
  .wa-field textarea {
    width: 100%;
    background: var(--ink);
    border: 0.5px solid var(--border);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 300;
    padding: 15px 17px;
    border-radius: 0;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
    appearance: none;
  }
  .wa-field textarea { resize: vertical; line-height: 1.7; min-height: 112px; }
  .wa-field select {
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                      linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position: right 22px center, right 16px center;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .wa-field select option { background: var(--ink); color: var(--text); }
  .wa-field input:focus,
  .wa-field select:focus,
  .wa-field textarea:focus {
    outline: none;
    border-color: var(--border-gold);
    background: var(--surface);
  }
  .wa-field input:focus-visible,
  .wa-field select:focus-visible,
  .wa-field textarea:focus-visible { outline: 2px solid var(--gold-pale); outline-offset: 2px; }
  .wa-submit {
    width: 100%;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
  }
  .wa-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
  .wa-note {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-faint);
    text-align: center;
    font-weight: 300;
  }
  @media (max-width: 600px) {
    .wa-row { grid-template-columns: 1fr; gap: 0; }
  }

  /* --- casket-shaped back to top --- */
  .float-casket {
    width: 46px;
    height: 62px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
  }
  .float-casket svg { width: 40px; height: 56px; }
  .float-casket .casket-body {
    fill: var(--card);
    stroke: var(--gold);
    stroke-width: 1.4;
    stroke-linejoin: round;
    transition: fill var(--transition), stroke var(--transition);
  }
  .float-casket .casket-lid {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1;
    opacity: 0.5;
  }
  .float-casket .casket-arrow {
    fill: none;
    stroke: var(--gold-pale);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .float-casket:hover .casket-body { fill: var(--card-hover); stroke: var(--gold-pale); }

  /* --- footer contact icons --- */
  .footer-icons { display: flex; gap: 10px; flex-wrap: wrap; }
  .footer-icons a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 0.5px solid var(--border);
    color: var(--text-muted);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
  }
  .footer-icons a:hover { color: var(--gold-pale); border-color: var(--border-gold); background: var(--card); }
  .footer-icons svg { width: 17px; height: 17px; fill: currentColor; }


  /* --- hero: the scroll caret is decorative, and it collides with the
         availability line once the viewport gets short. Reclaim the space. --- */
  @media (max-height: 860px) {
    .hero { padding-top: 96px; padding-bottom: 56px; }
    .hero-eyebrow { margin-bottom: 22px; }
    .scroll-caret { display: none; }
  }

  /* --- contact: labelled icon actions instead of raw numbers --- */
  .contact-ways {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
  }
  .contact-way {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    width: 104px;
    padding: 22px 8px 18px;
    border: 0.5px solid var(--border);
    background: var(--ink);
    text-decoration: none;
    color: var(--text-muted);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
  }
  .contact-way svg { width: 21px; height: 21px; fill: currentColor; }
  .contact-way span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.5;
    text-align: center;
  }
  .contact-way:hover {
    color: var(--gold-pale);
    border-color: var(--border-gold);
    background: var(--card);
  }
  .contact-hours {
    margin-top: 30px;
    font-size: 12px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-faint);
  }
  @media (max-width: 600px) {
    .contact-ways { gap: 10px; }
    .contact-way { width: calc(50% - 5px); }
  }


  /* --- mobile: centre the footer columns --- */
  @media (max-width: 600px) {
    .footer-top { text-align: center; }
    .footer-top > div > div[style*="display:flex"] { justify-content: center; }
    .footer-links { align-items: center; }
    .footer-icons { justify-content: center; }
    .footer-brand-body { max-width: 380px; margin-left: auto; margin-right: auto; }
  }

  /* --- catering page --- */
  .page-head { padding: 150px 24px 0; text-align: center; }
  .page-head .section-title { margin-bottom: 22px; }
  .picker-note {
    max-width: 600px; margin: 0 auto; font-size: 16px; line-height: 1.85;
    color: var(--text-muted); font-weight: 300;
  }
  .picker-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

  .picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
            background: var(--border); border: 0.5px solid var(--border); margin-top: 56px; }
  .picker-col { background: var(--surface); display: flex; flex-direction: column; min-width: 0; }
  .picker-group { padding: 40px 30px; }
  .picker-group + .picker-group { border-top: 0.5px solid var(--border); }
  .picker-group-title {
    font-family: var(--sans); font-size: 12px; font-weight: 400; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--gold);
    padding-bottom: 16px; margin-bottom: 8px; border-bottom: 0.5px solid var(--border);
  }
  .dish { display: flex; align-items: flex-start; gap: 13px; padding: 10px 0; cursor: pointer; }
  .dish input { position: absolute; opacity: 0; width: 0; height: 0; }
  .dish .box {
    width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px;
    border: 0.5px solid var(--border-gold); position: relative;
    transition: background var(--transition), border-color var(--transition);
  }
  .dish .box::after {
    content: ''; position: absolute; inset: 3px;
    background: var(--gold); opacity: 0; transition: opacity var(--transition);
  }
  .dish input:checked + .box { border-color: var(--gold); }
  .dish input:checked + .box::after { opacity: 1; }
  .dish input:focus-visible + .box { outline: 2px solid var(--gold-pale); outline-offset: 2px; }
  .dish .label { font-size: 16px; line-height: 1.6; color: var(--text-muted); font-weight: 300; }
  .dish:hover .label { color: var(--text); }
  .dish:hover .box { border-color: var(--gold); }
  .dish input:checked ~ .label { color: var(--text); }

  .tray {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
    background: rgba(20,20,18,0.97); border-top: 0.5px solid var(--border-gold);
    padding: 16px 24px; display: flex; align-items: center; justify-content: center;
    gap: 22px; flex-wrap: wrap;
    transform: translateY(110%); transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  }
  .tray.up { transform: none; }
  /* fallback if JS positioning is unavailable */
  .float-buttons.tray-clear-space { bottom: 100px; }
  .tray-count { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
  .tray-count strong { color: var(--gold-pale); font-weight: 400; }
  .tray-clear {
    background: none; border: none; cursor: pointer; font-family: var(--sans);
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-faint); text-decoration: underline; text-underline-offset: 4px;
  }
  .tray-clear:hover { color: var(--text-muted); }
  @media (max-width: 900px) { .picker { grid-template-columns: 1fr; } }
  @media (max-width: 600px) {
    .page-head { padding-top: 120px; }
    .picker-group { padding: 32px 24px; }
    .tray { gap: 12px; padding: 14px 16px; }

  }

  /* --- Chrome/Safari autofill: force the dark field back --- */
  .wa-field input:-webkit-autofill,
  .wa-field input:-webkit-autofill:hover,
  .wa-field input:-webkit-autofill:focus,
  .wa-field input:-webkit-autofill:active,
  .wa-field textarea:-webkit-autofill,
  .wa-field select:-webkit-autofill {
    -webkit-text-fill-color: var(--text);
    -webkit-box-shadow: 0 0 0 1000px var(--ink) inset;
            box-shadow: 0 0 0 1000px var(--ink) inset;
    caret-color: var(--text);
    border: 0.5px solid var(--border);
    /* Chrome re-applies its own colour on a timer; outrun it. */
    transition: background-color 9999s ease-in-out 0s;
  }
  .wa-field input:-webkit-autofill:focus {
    border-color: var(--border-gold);
    -webkit-box-shadow: 0 0 0 1000px var(--surface) inset;
            box-shadow: 0 0 0 1000px var(--surface) inset;
  }
  /* the native date picker indicator is black-on-black by default */
  .wa-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.72) sepia(0.5) saturate(3) hue-rotate(3deg);
    cursor: pointer;
  }

  /* ============================================================
     Arabic typography + RTL
     Cormorant Garamond and Jost have no Arabic coverage, so Arabic
     gets its own pairing: Amiri (Naskh serif) and Tajawal (sans).
     ============================================================ */
  :root { --serif-ar: 'Amiri', 'Cormorant Garamond', serif; --sans-ar: 'Tajawal', 'Jost', sans-serif; }

  .is-ar body, html.is-ar body { font-family: var(--sans-ar); }
  .is-ar .section-title, .is-ar .hero-title, .is-ar .contact-cta-title,
  .is-ar .stat-num, .is-ar .service-name, .is-ar .step-name, .is-ar .location-name,
  .is-ar .footer-brand-name, .is-ar .philosophy-quote, .is-ar .testimonial-text,
  .is-ar .emergency-number, .is-ar h1, .is-ar h2, .is-ar h3 { font-family: var(--serif-ar); }

  /* Arabic reads poorly with wide tracking and needs more leading */
  .is-ar .section-label, .is-ar .hero-eyebrow, .is-ar .nav-links a,
  .is-ar .footer-col-title, .is-ar .location-badge, .is-ar .stat-label,
  .is-ar .btn-primary, .is-ar .btn-ghost, .is-ar .menu-group-title,
  .is-ar .picker-group-title, .is-ar .contact-way span, .is-ar .wa-field label,
  .is-ar .tray-count, .is-ar .emergency-label, .is-ar .contact-hours,
  .is-ar .trust-text strong, .is-ar .service-link, .is-ar .location-directions {
    letter-spacing: 0 !important;
  }
  .is-ar .section-body, .is-ar .service-desc, .is-ar .step-desc,
  .is-ar .testimonial-text, .is-ar .footer-brand-body, .is-ar .picker-note { line-height: 2.05; }
  .is-ar .hero-title { line-height: 1.35; }
  .is-ar .section-title { line-height: 1.4; }

  /* --- direction flips --- */
  [dir="rtl"] .trust-item { border-right: none; border-left: 0.5px solid var(--border); }
  [dir="rtl"] .trust-item:first-child { border-left: none; }
  [dir="rtl"] .trust-item:last-child { border-left: 0.5px solid var(--border); }
  @media (max-width: 900px) {
    [dir="rtl"] .trust-item { border-left: none; border-bottom: 0.5px solid var(--border); }
  }
  [dir="rtl"] .philosophy-quote { border-left: none; border-right: 1px solid var(--gold); padding-left: 0; padding-right: 32px; }
  [dir="rtl"] .footer-copyright { text-align: left; }
  [dir="rtl"] .float-buttons { right: auto; left: 28px; }
  [dir="rtl"] .skip-link { left: auto; right: 16px; }
  [dir="rtl"] .service-card::after { transform-origin: right; }
  [dir="rtl"] .service-link::after, [dir="rtl"] .location-directions::after { content: '\2190'; }
  [dir="rtl"] .wa-form { text-align: right; }
  [dir="rtl"] .wa-field select { background-position: left 22px center, left 16px center; }
  [dir="rtl"] .dish { flex-direction: row; }
  @media (max-width: 600px) { [dir="rtl"] .float-buttons { left: 16px; right: auto; } }

  /* --- language switch --- */
  .lang-switch { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
  [dir="rtl"] .lang-switch { margin-left: 0; margin-right: 8px; }
  .lang-switch button {
    background: none; border: none; cursor: pointer;
    font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em;
    color: var(--text-faint); padding: 6px 9px; line-height: 1;
    transition: color var(--transition);
  }
  .lang-switch button:hover { color: var(--gold-pale); }
  .lang-switch button.on { color: var(--gold); }
  .lang-switch button[data-lang="ar"] { font-size: 15px; }
  @media (max-width: 900px) {
    .lang-switch { margin: 8px 0 0; justify-content: center; }
    .lang-switch button { font-size: 14px; padding: 8px 12px; }
  }
