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

    :root {
      --gold: #BE9052;
      --gold-light: #CBA660;
      --gold-muted: #D4B47A;
      --warm-white: #FAFAF6;
      --off-white: #F2EFE8;
      --warm-gray: #8A8580;
      --text: #2A2A2A;
      --text-dark: #474747;
      --text-mid: #4E4B47;
      --grain-opacity: 0.035;
    }

    html { scroll-behavior: smooth; }

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

    /* ── GRAIN OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1000;
      opacity: var(--grain-opacity);
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 2.5rem;
      background: rgba(250,250,246,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200,168,75,0.15);
    }

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

    .logo-mark {
      width: 44px;
      height: 44px;
      border: 2px solid var(--gold);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.3rem;
      color: var(--gold);
      letter-spacing: -0.02em;
      position: relative;
      overflow: hidden;
    }

    .logo-mark::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, transparent 60%);
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--text);
      line-height: 1.2;
    }

    .logo-text span {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--warm-gray);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-mid);
      font-weight: 500;
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--gold);
      color: var(--text) !important;
      padding: 0.55rem 1.4rem !important;
      border-radius: 2px;
      font-weight: 500 !important;
    }

    .nav-cta:hover { background: var(--gold-light); color: var(--text) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 72px;
      position: relative;
      overflow: hidden;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6rem 3rem 6rem 6rem;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.75rem;
    }

    .eyebrow-line {
      width: 40px;
      height: 1.5px;
      background: var(--gold);
    }

    .eyebrow-text {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 1.5rem;
    }

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

    .hero-sub {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-mid);
      max-width: 420px;
      margin-bottom: 2.5rem;
      font-style: italic;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-primary {
      background: var(--text-dark);
      color: var(--warm-white);
      padding: 0.9rem 2rem;
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--gold); color: var(--text); transform: translateY(-1px); }

    .btn-secondary {
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.2s;
    }

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

    .hero-right {
      position: relative;
      overflow: hidden;
    }

    .hero-visual {
      position: absolute;
      inset: 0;
      background: var(--off-white);
    }

    .hero-visual-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1.5rem;
      padding: 3rem;
    }

    /* Construction pattern visual */
    .blueprint-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200,168,75,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,168,75,0.06) 1px, transparent 1px);
      background-size: 32px 32px;
    }

    .craft-badge {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .badge-ring {
      width: 180px;
      height: 180px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .badge-ring::before {
      content: '';
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(200,168,75,0.35);
      border-radius: 50%;
    }

    .badge-inner {
      text-align: center;
    }

    .badge-years {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .badge-label {
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-top: 0.25rem;
    }

    .hero-stat-row {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 2.5rem;
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text);
    }

    .hero-stat-label {
      font-size: 0.67rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--warm-gray);
    }

    /* ── TAGLINE BAND ── */
    .tagline-band {
      background: var(--text-dark);
      padding: 1.4rem 6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      overflow: hidden;
    }

    .tagline-band-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--warm-white);
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .tagline-band-text em {
      color: var(--gold);
      font-style: italic;
    }

    .tagline-divider {
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── ABOUT ── */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 80vh;
    }

    .about-left {
      background: var(--off-white);
      padding: 7rem 4rem 7rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .about-left::after {
      content: '"';
      position: absolute;
      top: 3rem;
      left: 3rem;
      font-family: 'Playfair Display', serif;
      font-size: 18rem;
      color: rgba(200,168,75,0.08);
      line-height: 1;
      pointer-events: none;
    }

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

    .section-label .eyebrow-line { width: 28px; }

    .about-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 1.75rem;
      position: relative;
      z-index: 2;
    }

    .about-body {
      font-family: 'Libre Baskerville', serif;
      font-size: 1rem;
      line-height: 1.85;
      color: var(--text-mid);
      position: relative;
      z-index: 2;
      max-width: 480px;
    }

    .about-body p + p { margin-top: 1.25rem; }

    .about-right {
      padding: 7rem 6rem 7rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2.5rem;
    }

    .value-item {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(200,168,75,0.2);
    }

    .value-item:last-child { border-bottom: none; padding-bottom: 0; }

    .value-icon {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      border: 1.5px solid var(--gold);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-top: 0.1rem;
    }

    .value-content h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .value-content p {
      font-size: 0.9rem;
      line-height: 1.65;
      color: var(--text-mid);
    }

    /* ── SERVICES ── */
    .services {
      padding: 7rem 6rem;
      background: var(--warm-white);
    }

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

    .services-header-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      margin-top: 0.75rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(200,168,75,0.15);
      border: 1.5px solid rgba(200,168,75,0.15);
      border-radius: 4px;
      overflow: hidden;
    }

    .service-card {
      background: var(--warm-white);
      padding: 2.75rem 2.25rem;
      position: relative;
      transition: background 0.25s;
    }

    .service-card:hover { background: var(--off-white); }

    .service-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(200,168,75,0.18);
      line-height: 1;
      margin-bottom: 1.25rem;
      display: block;
    }

    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .service-card p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--text-mid);
    }

    .service-arrow {
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      width: 28px;
      height: 28px;
      border: 1px solid var(--gold-muted);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--gold);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .service-card:hover .service-arrow { opacity: 1; }

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: var(--off-white);
      padding: 7rem 6rem;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .testimonials-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 700;
      margin-top: 0.75rem;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .testimonial-card {
      background: var(--warm-white);
      padding: 2.25rem;
      border-radius: 3px;
      position: relative;
      border-top: 3px solid var(--gold);
    }

    .testimonial-stars {
      color: var(--gold);
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }

    .testimonial-text {
      font-family: 'Libre Baskerville', serif;
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--text-mid);
      font-style: italic;
      margin-bottom: 1.5rem;
    }

    .testimonial-author {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
    }

    .testimonial-location {
      font-size: 0.75rem;
      color: var(--warm-gray);
      margin-top: 0.2rem;
    }

    /* ── MISSION ── */
    .mission {
      background: var(--text-dark);
      padding: 7rem 6rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .mission::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200,168,75,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,168,75,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .mission-inner {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: 0 auto;
    }

    .mission-inner .eyebrow-text { color: var(--gold-muted); }
    .mission-inner .eyebrow-line { background: var(--gold); }

    .mission-header {
      justify-content: center;
      margin-bottom: 2rem;
    }

    .mission h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      color: var(--warm-white);
      line-height: 1.1;
      margin-bottom: 1.75rem;
    }

    .mission h2 em { color: var(--gold); font-style: italic; }

    .mission-text {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.05rem;
      line-height: 1.85;
      color: rgba(250,250,246,0.72);
    }

    /* ── CONTACT ── */
    .contact {
      padding: 7rem 6rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
    }

    .contact-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700;
      line-height: 1.1;
      margin-top: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .contact-left p {
      font-family: 'Libre Baskerville', serif;
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-mid);
      max-width: 420px;
    }

    .contact-info {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .contact-info-icon {
      width: 36px;
      height: 36px;
      background: var(--off-white);
      border: 1px solid rgba(200,168,75,0.3);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .contact-info-text {
      font-size: 0.88rem;
      color: var(--text-mid);
    }

    .contact-info-text strong {
      display: block;
      color: var(--text);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.1rem;
    }

    .contact-right {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }

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

    .form-group.full { grid-column: 1 / -1; }

    .form-group label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-mid);
      font-weight: 500;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      border: 1.5px solid rgba(200,168,75,0.25);
      border-radius: 2px;
      padding: 0.85rem 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      background: var(--warm-white);
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
      -webkit-appearance: none;
    }

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

    .form-group textarea { resize: vertical; min-height: 130px; }

    .form-submit {
      background: var(--text-dark);
      color: var(--warm-white);
      border: none;
      padding: 1rem 2.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      align-self: flex-start;
    }

    .form-submit:hover { background: var(--gold); color: var(--text); transform: translateY(-1px); }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark);
      padding: 2.5rem 6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(200,168,75,0.12);
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 0.9rem;
      color: var(--warm-white);
      font-weight: 700;
    }

    .footer-tagline {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .footer-copy {
      font-size: 0.72rem;
      color: rgba(250,250,246,0.4);
      letter-spacing: 0.06em;
    }

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

    .hero-left > * {
      animation: fadeUp 0.7s ease both;
    }

    .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-left > *:nth-child(2) { animation-delay: 0.22s; }
    .hero-left > *:nth-child(3) { animation-delay: 0.34s; }
    .hero-left > *:nth-child(4) { animation-delay: 0.46s; }

    .hero-right .craft-badge {
      animation: fadeUp 0.8s 0.5s ease both;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }

      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 5rem 2rem 3rem; }
      .hero-right { min-height: 340px; }
      .tagline-band { padding: 1.2rem 2rem; flex-wrap: wrap; gap: 1rem; text-align: center; }
      .about { grid-template-columns: 1fr; }
      .about-left { padding: 5rem 2rem; }
      .about-right { padding: 3rem 2rem 5rem; }
      .services { padding: 5rem 2rem; }
      .services-grid { grid-template-columns: 1fr; }
      .services-header { flex-direction: column; align-items: flex-start; }
      .testimonials { padding: 5rem 2rem; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .mission { padding: 5rem 2rem; }
      .contact { padding: 5rem 2rem; grid-template-columns: 1fr; gap: 3rem; }
      footer { padding: 2rem; flex-direction: column; gap: 1rem; text-align: center; }
    }