@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root { --ink: #17251f; --moss: #345246; --sand: #e9e0d0; --paper: #f8f6f0; --orange: #dc6c3b; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Manrope, Arial, sans-serif; }
.hero { min-height: 720px; height: 100svh; position: relative; overflow: hidden; color: white; display: grid; }
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center; }
.hero__shade { background: linear-gradient(90deg, rgba(9,21,25,.68), rgba(9,21,25,.12) 65%), linear-gradient(0deg, rgba(8,19,22,.4), transparent 45%); }
.nav, .hero__content, .hero__caption { z-index: 1; width: min(1180px, calc(100% - 64px)); margin: auto; }
.nav { padding-top: 30px; display: flex; align-items: center; gap: 28px; font-size: 13px; }
.nav a { color: white; text-decoration: none; }
.brand { font: 600 30px/1 "Playfair Display", serif; margin-right: auto; letter-spacing: -.04em; }
.nav__cta { border-bottom: 1px solid rgba(255,255,255,.8); padding-bottom: 4px; }
.hero__content { align-self: center; padding-top: 70px; max-width: min(1180px, calc(100% - 64px)); }
.eyebrow { margin: 0 0 16px; letter-spacing: .16em; text-transform: uppercase; font-size: 11px; font-weight: 700; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; letter-spacing: -.04em; }
h1 { max-width: 760px; margin: 0; font-size: clamp(54px, 7vw, 100px); line-height: .98; }
.lead { max-width: 520px; margin: 28px 0 34px; font-size: 17px; line-height: 1.65; }
.button { display: inline-flex; gap: 22px; align-items: center; border: 0; padding: 15px 20px; background: #fff; color: var(--ink); font: 700 13px Manrope, sans-serif; text-decoration: none; cursor: pointer; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 20px; line-height: 0; }
.hero__caption { align-self: end; padding-bottom: 28px; font-size: 12px; opacity: .84; }
.intro { padding: 120px 32px; max-width: 1180px; margin: auto; }
.eyebrow--dark { color: var(--orange); }
h2 { font-size: clamp(42px, 5vw, 68px); line-height: 1.04; max-width: 650px; margin: 0 0 24px; }
.intro > p:not(.eyebrow) { max-width: 610px; font-size: 17px; line-height: 1.7; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 70px; }
.features article { background: #ede8de; padding: 30px; min-height: 210px; }
.features span { color: var(--orange); font-size: 12px; font-weight: 700; }
h3 { font: 500 29px "Playfair Display", serif; margin: 45px 0 11px; }
.features p { margin: 0; font-size: 13px; line-height: 1.6; color: #4c5a53; }
.quote { background: var(--moss); color: white; padding: 106px 32px; text-align: center; }
.quote p { margin: 0; font: italic 500 clamp(30px, 4vw, 52px)/1.18 "Playfair Display", serif; }
.inquiry { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; max-width: 1080px; margin: auto; padding: 120px 32px; }
.inquiry__copy p:not(.eyebrow) { max-width: 370px; line-height: 1.7; font-size: 15px; }
.small { color: #6a756f; font-size: 12px !important; }
form { background: white; padding: 34px; box-shadow: 0 12px 38px rgba(30,44,37,.08); }
label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 18px; }
input, select, textarea { width: 100%; border: 0; border-bottom: 1px solid #cbd1ca; background: transparent; padding: 10px 0; margin-top: 5px; color: var(--ink); font: 14px Manrope, sans-serif; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); }
textarea { resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.button--dark { margin-top: 8px; background: var(--ink); color: white; }
.button:disabled { opacity: .65; cursor: wait; transform: none; }
.form-status { min-height: 20px; margin: 17px 0 0; font-size: 13px; line-height: 1.5; }
.form-status--ok { color: #287449; }.form-status--error { color: #aa3535; }.honeypot { position: absolute; left: -9999px; opacity: 0; }
footer { padding: 25px 32px; background: #15241e; color: rgba(255,255,255,.7); text-align: center; font-size: 12px; }
@media (max-width: 720px) { .hero { min-height: 640px; }.nav, .hero__content, .hero__caption { width: calc(100% - 40px); }.nav { gap: 14px; }.nav > a:not(.brand):not(.nav__cta) { display: none; }.hero__content { padding-top: 50px; }.intro, .inquiry { padding: 80px 20px; }.features, .inquiry { grid-template-columns: 1fr; }.features { margin-top: 45px; }.inquiry { gap: 42px; }.form-grid { grid-template-columns: 1fr; gap: 0; } form { padding: 25px; } }
