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

    :root {
      --ink: #0e0e0e;
      --paper: #f5f0e8;
      --cream: #ede7d5;
      --accent: #b85c28;
      --accent-light: #d97d4a;
      --teal: #1a4a4a;
      --teal-light: #2d6b6b;
      --rule: rgba(14,14,14,0.15);
      --serif: 'Cormorant Garamond', Georgia, serif;
      --mono: 'DM Mono', monospace;
      --sans: 'Outfit', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ── Noise texture overlay ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      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)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 999; opacity: 0.6;
    }

    /* ── HEADER ── */
	header {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  height: 64px;
	  z-index: 1000;

	  display: flex;
	  align-items: center;
	  justify-content: space-between;

	  padding: 0 2.5rem;

	  background: rgba(245, 240, 232, 0.72);
	  backdrop-filter: blur(14px);
	  -webkit-backdrop-filter: blur(14px);

	  border-bottom: 1px solid rgba(14, 14, 14, 0.08);
	}

	.container {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 0 2rem;
	}

	.logo {
	  display: flex;
	  align-items: center;
	  gap: 0.65rem;
	  max-height: 64px;
	}
			
	.logo-image {
	  width: 34px;
	  height: 34px;
	  object-fit: contain;
	  flex-shrink: 0;
	}
	
	.logo-main {
	  font-family: var(--serif);
	  font-size: 1.05rem;
	  font-weight: 500;
	  letter-spacing: 0.01em;
	  line-height: 1;
	}

	.logo-sub {
	  font-family: var(--mono);
	  font-size: 0.5rem;
	  letter-spacing: 0.18em;
	  text-transform: uppercase;
	  color: var(--accent);
	  margin-top: 2px;
	  opacity: 0.85;
	}

	nav {
	  display: flex;
	  gap: 1.8rem;
	  align-items: center;
	}

	nav a {
	  font-family: var(--mono);
	  font-size: 0.6rem;
	  letter-spacing: 0.18em;
	  text-transform: uppercase;
	  color: var(--ink);
	  text-decoration: none;

	  opacity: 0.55;
	  transition: opacity 0.2s ease, color 0.2s ease;
	}

	nav a:hover {
	  opacity: 1;
	  color: var(--accent);
	}

    /* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
}

/* THIS is the actual grid wrapper */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: calc(100vh - 64px);
}

	.hero-left {
	  padding-top: 5rem; /* keep visual breathing room */
	}

    .hero-eyebrow {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3.5rem, 6vw, 6rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.01em;
      color: var(--ink);
      opacity: 0;
      animation: fadeUp 0.9s 0.35s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(14,14,14,0.65);
      max-width: 38ch;
      margin-top: 2rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.5s forwards;
    }

    .hero-cta {
      display: flex; gap: 1rem; align-items: center;
      margin-top: 2.8rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.65s forwards;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      padding: 0.75rem 2rem;
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      border: none; cursor: pointer;
      transition: background 0.25s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }

    .btn-ghost {
      color: var(--ink);
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      opacity: 0.55;
      transition: opacity 0.2s;
      display: inline-flex; align-items: center; gap: 0.5rem;
    }
    .btn-ghost:hover { opacity: 1; }
    .btn-ghost::after { content: '↓'; font-size: 0.8rem; }

    .hero-right {
      position: relative; overflow: hidden;
      opacity: 0;
      animation: fadeIn 1.2s 0.4s forwards;
    }

    .hero-bg-block {
      position: absolute; inset: 0;
      background: var(--teal);
    }

    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(245,240,232,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,240,232,0.07) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .hero-orb {
      position: absolute;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 40%, var(--accent) 0%, transparent 65%);
      opacity: 0.25;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 6s ease-in-out infinite;
    }

    .hero-lines {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 3.5rem;
    }

    .hero-stat {
      border-top: 1px solid rgba(245,240,232,0.2);
      padding: 1.2rem 0;
      display: flex; justify-content: space-between; align-items: baseline;
    }
    .hero-stat:last-child { border-bottom: 1px solid rgba(245,240,232,0.2); }

    .stat-label {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.5);
    }
    .stat-value {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 300;
      color: var(--paper);
    }

    /* ── RULE DIVIDER ── */
    .section-rule {
      display: flex; align-items: center; gap: 1.5rem;
      padding: 0 5rem;
      margin: 4rem 0;
    }
    .section-rule-line { flex: 1; height: 1px; background: var(--rule); }
    .section-rule-label {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      white-space: nowrap;
    }

    /* ── SERVICES ── */
    .services {
      padding: 2rem 5rem 6rem;
    }

    .services-header {
      margin-bottom: 4rem;
    }

    .services-number {
      font-family: var(--mono);
      font-size: 0.6rem;
      color: var(--accent);
      letter-spacing: 0.2em;
      margin-bottom: 0.6rem;
    }

    .services-title {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 4vw, 4rem);
      font-weight: 300;
      line-height: 1.1;
    }
    .services-title em { font-style: italic; color: var(--accent); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--rule);
    }

    .service-card {
      padding: 3rem 2.5rem;
      border-right: 1px solid var(--rule);
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
    .service-card:last-child { border-right: none; }
    .service-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .service-card:hover { background: var(--cream); }
    .service-card:hover::after { transform: scaleX(1); }

    .service-icon {
      font-family: var(--serif);
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 1.5rem;
      font-style: italic;
      opacity: 0.7;
    }

    .service-num {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      color: rgba(14,14,14,0.3);
      margin-bottom: 0.8rem;
    }

    .service-name {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .service-desc {
      font-size: 0.85rem;
      line-height: 1.75;
      color: rgba(14,14,14,0.6);
    }

    .service-list {
      margin-top: 1.5rem;
      list-style: none;
    }
    .service-list li {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(14,14,14,0.45);
      padding: 0.45rem 0;
      border-bottom: 1px solid var(--rule);
      display: flex; align-items: center; gap: 0.6rem;
    }
    .service-list li::before { content: '—'; color: var(--accent); }

    /* ── ABOUT STRIP ── */
.about-strip {
  padding: 6rem 0;
  background: var(--teal);
  position: relative;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
    .about-strip::before {
      content: '';
      position: absolute;
      right: -100px; top: -100px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,92,40,0.15) 0%, transparent 65%);
    }

    .about-left {}
    .about-eyebrow {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.4);
      margin-bottom: 1.5rem;
    }
    .about-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--paper);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .about-title em { font-style: italic; color: var(--accent-light); }

    .about-body {
      font-size: 0.9rem;
      line-height: 1.85;
      color: rgba(245,240,232,0.65);
    }

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

    .about-fact {
      border-left: 2px solid rgba(184,92,40,0.6);
      padding-left: 1.5rem;
    }
    .about-fact-label {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.4);
      margin-bottom: 0.4rem;
    }
    .about-fact-value {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--paper);
    }

    /* ── CONTACT ── */
.contact {
  padding: 6rem 0;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

    .contact-left {}
    .contact-eyebrow {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
    }
    .contact-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 3.5rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .contact-title em { font-style: italic; color: var(--accent); }

    .contact-info {
      margin-top: 2rem;
      display: flex; flex-direction: column; gap: 1rem;
    }
    .contact-item {
      display: flex; gap: 1rem; align-items: baseline;
    }
    .contact-item-label {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(14,14,14,0.35);
      min-width: 5rem;
    }
    .contact-item-val {
      font-size: 0.9rem;
      color: var(--ink);
    }
    .contact-item-val a {
      color: var(--accent);
      text-decoration: none;
    }
    .contact-item-val a:hover { text-decoration: underline; }

    .contact-right {
      background: var(--cream);
      padding: 2.5rem;
      border-top: 3px solid var(--accent);
    }

    .contact-form-title {
      font-family: var(--serif);
      font-size: 1.4rem;
      margin-bottom: 1.8rem;
    }

    .form-group {
      margin-bottom: 1.4rem;
    }
    .form-group label {
      display: block;
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(14,14,14,0.45);
      margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: var(--paper);
      border: 1px solid var(--rule);
      padding: 0.75rem 1rem;
      font-family: var(--sans);
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--ink);
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: var(--accent); }
    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-submit {
      width: 100%;
      background: var(--ink);
      color: var(--paper);
      border: none;
      padding: 0.9rem;
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.25s;
      margin-top: 0.5rem;
    }
    .form-submit:hover { background: var(--accent); }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      color: var(--paper);
      padding: 3rem 5rem;
      display: flex; justify-content: space-between; align-items: center;
      border-top: 3px solid var(--accent);
    }

    .footer-logo {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
    }
    .footer-logo span {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-light);
      display: block;
      margin-top: 3px;
    }

    .footer-center {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.35;
      text-align: center;
    }

    .footer-right {
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.35;
      text-align: right;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes pulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.25; }
      50%       { transform: translate(-50%, -50%) scale(1.12); opacity: 0.35; }
    }

    /* Scroll-reveal */
	.reveal {
	  opacity: 0;
	  transform: translateY(30px);
	  transition: opacity 0.8s ease, transform 0.8s ease;
	}

	/* fallback safety: if JS fails, page still shows */
	.no-js .reveal {
	  opacity: 1;
	  transform: none;
	}
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      header { padding: 1rem 1.5rem; }
      nav { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 4rem 1.5rem; }
      .hero-right { height: 320px; }
      .section-rule { padding: 0 1.5rem; }
      .services { padding: 2rem 1.5rem 4rem; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { border-right: none; border-bottom: 1px solid var(--rule); }
      .about-strip { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
      .contact { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
      footer { flex-direction: column; gap: 1.2rem; text-align: center; padding: 2rem 1.5rem; }
      .footer-right { text-align: center; }
    }
