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

  :root {
    --cream: #F7F3EC;
    --warm-white: #FDFAF6;
    --sage: #7A8C72;
    --sage-light: #B5C4AE;
    --sage-dark: #4A5C44;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --charcoal: #2C2B28;
    --muted: #7A7870;
    --section-gap: 10vh;
  }

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--warm-white);
    color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 3rem;
    background: rgba(253, 250, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,169,110,0.2);
    overflow: hidden;
  }

  .nav-spacer {
    width: 120px;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
  }

  .nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .contact-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--sage-dark);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    display: inline-block;
  }
  .contact-btn:hover { background: var(--charcoal); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/banner.jpeg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.45);
    transform: scale(1.04);
    transition: transform 6s ease;
  }
  .hero:hover .hero-bg { transform: scale(1.0); }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44,43,40,0.1) 0%, rgba(44,43,40,0.55) 100%);
  }

  .hero-content {
    position: relative;
    text-align: center;
    color: var(--warm-white);
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeUp 1.2s ease both;
  }

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

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    font-weight: 400;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 1.5rem;
  }

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

  .hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin: 0 auto 2.4rem;
    font-weight: 300;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 1.8s 0.5s ease both;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.4);
    animation: scrollPulse 2s infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 0.8; transform: scaleY(1); }
  }

  /* ── SECTION BASE ── */
  section { padding: var(--section-gap) 3rem; }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  /* ── MISSION ── */
  .mission {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .mission-img {
    position: relative;
  }

  .mission-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
  }

  .mission-img::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--gold-light);
    z-index: -1;
  }

  .mission-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
  }

  .mission-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 1rem;
  }

  .divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
  }

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

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
  }

  .services-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    max-width: 380px;
  }

  .services-header p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 380px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .services-grid .service-card:nth-child(7) {
    grid-column: 2;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    cursor: default;
  }

  .service-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.72);
  }

  .service-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.55);
  }

  .service-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.8rem;
    background: linear-gradient(to top, rgba(20,18,15,0.85) 0%, transparent 100%);
    color: white;
    transition: padding 0.3s ease;
  }

  .service-num {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 0.6rem;
  }

  .service-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }

  .service-card:hover .service-desc {
    max-height: 80px;
    opacity: 1;
  }

  /* ── QUOTE ── */
  .quote-section {
    background: var(--sage-dark);
    text-align: center;
    padding: 7rem 3rem;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    max-width: 780px;
    margin: 0 auto 2rem;
    line-height: 1.5;
  }

  .quote-attr {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-light);
  }

  /* ── WHO WE SERVE ── */
  .serve-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .serve-card {
    position: relative;
    overflow: hidden;
  }
  .serve-card-bg {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: var(--sage-dark);
  }
  .serve-card-bg .serve-card-content {
    background: linear-gradient(to top, rgba(44,43,40,0.82) 0%, rgba(44,43,40,0.1) 60%);
  }

  .serve-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
    filter: brightness(0.6);
  }

  .serve-card:hover img { transform: scale(1.04); }

  .serve-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(44,43,40,0.75) 0%, transparent 55%);
    color: white;
  }

  .serve-card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
  }

  .serve-card-content p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
  }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(44,43,40,0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }

  .modal {
    background: var(--warm-white);
    max-width: 520px;
    width: 100%;
    padding: 2.8rem 2.8rem 2.4rem;
    position: relative;
    transform: translateY(28px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
    opacity: 0;
    border-top: 3px solid var(--gold);
  }
  .modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }

  .modal-close {
    position: absolute;
    top: 1.1rem; right: 1.3rem;
    background: none; border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s, transform 0.25s;
  }
  .modal-close:hover { color: var(--charcoal); transform: rotate(90deg); }

  .modal-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
  }
  .modal-sub {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
  }
  .contact-form { display: grid; gap: 0.8rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.82rem 1rem;
    border: 1px solid rgba(201,169,110,0.35);
    background: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 1px;
    resize: vertical;
  }
  .contact-form input:focus,
  .contact-form textarea:focus { border-color: var(--gold); }
  .contact-form textarea { min-height: 95px; }

  .submit-btn {
    width: 100%;
    padding: 0.95rem;
    background: var(--sage-dark);
    color: var(--warm-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    border-radius: 1px;
    margin-top: 0.2rem;
  }
  .submit-btn:hover { background: var(--charcoal); }

  .modal-success {
    display: none;
    text-align: center;
    padding: 1rem 0 0.5rem;
  }
  .modal-success .check { font-size: 2rem; margin-bottom: 0.7rem; }
  .modal-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.4rem;
  }
  .modal-success p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 2.5rem 3rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  footer span { color: var(--gold); }

  /* ── WRAP SECTIONS ── */
  .section-inner { max-width: 1200px; margin: 0 auto; }

  @media (max-width: 900px) {
    nav { height: 56px; padding: 0 1.2rem; }
    .nav-spacer { display: none; }
    .nav-logo {
      position: static;
      transform: none;
    }
    .nav-logo-img { height: 38px; }
    section { padding: 5rem 1.5rem; }
    .mission { grid-template-columns: 1fr; gap: 3rem; }
    .mission-img img { height: 360px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card img { height: 280px; }
    .serve-grid { grid-template-columns: 1fr; }
    .serve-card img { height: 340px; }
    .services-header { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
  }