:root {
    --bg: #f4f0e8;
    --bg-deep: #1a1614;
    --paper: #ebe4d4;
    --ink: #1a1614;
    --ink-soft: #4a3f36;
    --accent: #b8431f;
    --accent-deep: #8a2f15;
    --gold: #c19a4b;
    --rule: #1a1614;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Archivo', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .display { font-family: 'Fraunces', serif; font-weight: 700; letter-spacing: -0.02em; line-height: 0.95; }
  .mono { font-family: 'Archivo', sans-serif; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.72rem; }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(244, 240, 232, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 22, 20, 0.08);
  }
  .logo { display: flex; align-items: center; gap: 0.7rem; }
  .logo-mark {
    width: 38px; height: 38px;
    background: var(--ink);
    color: var(--bg);
    display: grid; place-items: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 2px;
  }
  .logo-text { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; }
  .logo-text span { color: var(--accent); }

  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 0.7rem 1.3rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--accent) !important; }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.2rem; }
    .nav-links { gap: 1rem; }
    .nav-links a:not(.nav-cta) { display: none; }
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    z-index: 2;
  }
  .hero-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
  }
  .hero-meta::before {
    content: '';
    width: 60px; height: 1px;
    background: var(--ink);
  }
  .hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }
  .hero-lede {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 32rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
  .btn-primary {
    background: var(--accent);
    color: var(--bg);
    padding: 1.1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 2px solid var(--accent);
    transition: all 0.25s;
    border-radius: 2px;
  }
  .btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: 1.1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--ink);
    transition: all 0.25s;
    border-radius: 2px;
  }
  .btn-secondary:hover { background: var(--ink); color: var(--bg); }

  /* Hero visual: stacked illustrated tools/house */
  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    display: grid;
    place-items: center;
  }
  .hero-svg-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--paper);
    border: 1px solid var(--ink);
    overflow: hidden;
  }
  .hero-svg-wrap::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--ink);
    pointer-events: none;
    z-index: 2;
  }
  .hero-corner {
    position: absolute;
    bottom: -12px; right: -12px;
    background: var(--ink);
    color: var(--bg);
    padding: 1rem 1.2rem;
    z-index: 5;
    max-width: 220px;
  }
  .hero-corner .num { font-family: 'Fraunces', serif; font-size: 2rem; line-height: 1; color: var(--gold); }
  .hero-corner .lbl { font-size: 0.75rem; margin-top: 0.3rem; color: var(--bg); opacity: 0.85; line-height: 1.3; }

  .hero-stamp {
    position: absolute;
    top: -20px; left: -20px;
    width: 110px; height: 110px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    z-index: 5;
    transform: rotate(-12deg);
    box-shadow: 4px 4px 0 var(--ink);
  }
  .hero-stamp .small { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
  .hero-stamp .big { font-size: 1.3rem; line-height: 1; margin: 0.15rem 0; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 7rem; }
    .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  }

  /* ===== TICKER ===== */
  .ticker {
    position: relative;
    z-index: 2;
    background: var(--ink);
    color: var(--bg);
    padding: 1.2rem 0;
    overflow: hidden;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .ticker-track {
    display: flex;
    gap: 3rem;
    animation: scroll 40s linear infinite;
    width: max-content;
  }
  .ticker-track span {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  .ticker-track span::after {
    content: '✦';
    color: var(--gold);
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== SECTIONS ===== */
  section { position: relative; z-index: 2; padding: 6rem 2.5rem; }
  .section-head { display: flex; align-items: baseline; gap: 1.5rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
  .section-num {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    color: var(--accent);
    font-style: italic;
  }
  .section-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    flex: 1;
    min-width: 280px;
  }
  .section-title em { font-style: italic; font-weight: 400; }

  /* ===== SERVICES ===== */
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
  }
  .service {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    transition: background 0.3s, color 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .service:hover { background: var(--ink); color: var(--bg); }
  .service:hover .service-icon { color: var(--gold); }
  .service:hover .service-num { color: var(--gold); }
  .service-num {
    font-family: 'Fraunces', serif;
    font-size: 0.85rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
  }
  .service-icon {
    width: 48px; height: 48px;
    margin-bottom: 1.2rem;
    color: var(--accent);
    transition: color 0.3s;
  }
  .service h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.15;
  }
  .service p { font-size: 0.95rem; opacity: 0.85; line-height: 1.6; }

  /* ===== FEATURE BLOCK ===== */
  .feature {
    background: var(--bg-deep);
    color: var(--bg);
    padding: 7rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(193, 154, 75, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(193, 154, 75, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .feature > * { position: relative; z-index: 1; }
  .feature h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  .feature h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
  .feature-text p { color: rgba(244, 240, 232, 0.75); margin-bottom: 1.2rem; font-size: 1.05rem; }
  .feature-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 240, 232, 0.15);
  }
  .stat .num { font-family: 'Fraunces', serif; font-size: 2.8rem; color: var(--gold); line-height: 1; }
  .stat .lbl { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.4rem; opacity: 0.7; }

  .feature-quote {
    border-left: 3px solid var(--gold);
    padding: 1rem 0 1rem 2rem;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .feature-quote .author {
    font-family: 'Archivo', sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1.2rem;
    color: var(--gold);
  }

  @media (max-width: 900px) {
    .feature { grid-template-columns: 1fr; padding: 5rem 1.5rem; }
  }

  /* ===== PROCESS ===== */
  .process { background: var(--paper); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid var(--ink);
  }
  .step {
    padding: 2.5rem 1.5rem 2.5rem 0;
    position: relative;
    border-right: 1px solid rgba(26, 22, 20, 0.15);
  }
  .step:last-child { border-right: none; }
  .step-num {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    font-style: italic;
  }
  .step h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
  }
  .step p { font-size: 0.92rem; color: var(--ink-soft); padding-right: 1rem; }

  @media (max-width: 800px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    .process-grid { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid rgba(26, 22, 20, 0.15); padding-right: 0; }
  }

  /* ===== AREAS ===== */
  .areas {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
  }
  .areas-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.5rem; }
  .areas-text h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
  .areas-text p { color: var(--ink-soft); margin-bottom: 1.5rem; font-size: 1.05rem; }

  .areas-list {
    list-style: none;
    columns: 2;
    column-gap: 2rem;
    margin-top: 1.5rem;
  }
  .areas-list li {
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(26, 22, 20, 0.2);
    font-size: 0.95rem;
    break-inside: avoid;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .areas-list li::after {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
  }

  .areas-map {
    aspect-ratio: 1/1;
    background: var(--paper);
    border: 1px solid var(--ink);
    position: relative;
    overflow: hidden;
  }
  .areas-map svg { width: 100%; height: 100%; display: block; }

  @media (max-width: 900px) {
    .areas { grid-template-columns: 1fr; }
  }

  /* ===== CONTACT ===== */
  .contact {
    background: var(--ink);
    color: var(--bg);
    padding: 6rem 2.5rem;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .contact h2 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); margin-bottom: 1.5rem; }
  .contact h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
  .contact-lede { color: rgba(244, 240, 232, 0.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 26rem; }

  .contact-list { list-style: none; }
  .contact-list li {
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(244, 240, 232, 0.15);
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .contact-list li:first-child { border-top: 1px solid rgba(244, 240, 232, 0.15); }
  .contact-list a, .contact-list span {
    color: var(--bg);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
  }
  .contact-list a:hover { color: var(--gold); }
  .contact-list .lbl {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    width: 90px;
    flex-shrink: 0;
  }

  /* Quote form card */
  .quote-card {
    background: var(--paper);
    color: var(--ink);
    padding: 2.5rem;
    position: relative;
  }
  .quote-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--accent);
  }
  .quote-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
  }
  .quote-card p { color: var(--ink-soft); margin-bottom: 1.8rem; font-size: 0.95rem; }
  .form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
  .form-row label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .form-row input, .form-row select, .form-row textarea {
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid rgba(26, 22, 20, 0.2);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    border-radius: 2px;
    transition: border-color 0.2s;
  }
  .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
  }
  .form-row textarea { resize: vertical; min-height: 100px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .quote-card button {
    width: 100%;
    background: var(--ink);
    color: var(--bg);
    padding: 1.1rem;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 2px;
    letter-spacing: 0.05em;
  }
  .quote-card button:hover { background: var(--accent); }

  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 500px) {
    .form-grid { grid-template-columns: 1fr; }
    .contact-list .lbl { width: 70px; font-size: 0.65rem; }
  }

  /* ===== FOOTER ===== */
  footer {
    position: relative;
    z-index: 2;
    background: var(--bg-deep);
    color: var(--bg);
    padding: 3rem 2.5rem 2rem;
    border-top: 1px solid rgba(244, 240, 232, 0.1);
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 240, 232, 0.1);
  }
  .footer-logo { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; }
  .footer-logo span { color: var(--accent); font-style: italic; }
  .footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(244, 240, 232, 0.6);
  }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-meta { animation: fadeUp 0.8s ease 0.1s both; }
  .hero h1 { animation: fadeUp 0.8s ease 0.2s both; }
  .hero-lede { animation: fadeUp 0.8s ease 0.35s both; }
  .hero-actions { animation: fadeUp 0.8s ease 0.5s both; }
  .hero-visual { animation: fadeUp 1s ease 0.4s both; }

  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
