:root {
  --ink: #171717;
  --white: #ffffff;
  --blush: #f7efec;
  --blush-2: #ded2cc;
  --rose: #c9857a;
  --sand: #ddbb8b;
  --muted: #77706d;
  --line: rgba(23, 23, 23, .16);
  --display: "Mulish", Arial, sans-serif;
  --serif: "Quattrocento", Georgia, serif;
  --label: "Roboto", Arial, sans-serif;
  --shell: min(1100px, calc(100% - 48px));
  --wide: min(1320px, calc(100% - 48px));
  --header-h: 110px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--serif); font-size: 16px; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
::selection { background: var(--rose); color: var(--white); }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; background: var(--ink); color: var(--white); padding: 10px 16px; }
.skip-link:focus { top: 16px; }
.section-shell { width: var(--shell); margin-inline: auto; }
.wide-shell { width: var(--wide); margin-inline: auto; }
.section-space { padding-top: 125px; padding-bottom: 125px; }
.m-eyebrow { display: block; margin-bottom: 20px; font-family: var(--label); font-size: 10px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; }
.m-heading { margin: 0; font-family: var(--display); font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.12; letter-spacing: -.035em; }
.m-heading.small { font-size: clamp(30px, 3vw, 42px); }
.m-copy { color: var(--muted); font-size: 17px; line-height: 1.85; }
.m-copy p { margin: 0 0 24px; }
.m-button { min-height: 52px; padding: 0 30px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid currentColor; font-family: var(--label); font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; transition: background .25s ease, color .25s ease; }
.m-button:hover { background: var(--ink); color: var(--white); }
.m-button.light { color: var(--white); }
.m-button.light:hover { background: var(--white); color: var(--ink); }
.m-link { display: inline-flex; align-items: center; gap: 15px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-family: var(--label); font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.m-link span { transition: transform .25s ease; }
.m-link:hover span { transform: translateX(4px); }

/* Header */
.site-header { position: absolute; inset: 0 0 auto; z-index: 60; height: var(--header-h); padding: 0 40px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: var(--white); }
.site-header.on-light { color: var(--ink); }
.site-header.is-fixed { position: fixed; height: 76px; color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(0,0,0,.08); animation: header-in .35s ease both; }
@keyframes header-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-header.on-light .site-logo, .site-header.is-fixed .site-logo { background: transparent; }
.logo-seal { width: 56px; height: 56px; object-fit: cover; flex-shrink: 0; }
.site-header.on-light .logo-seal, .site-header.is-fixed .logo-seal { filter: none; }
.logo-sig { display: none; height: 50px; width: auto; object-fit: contain; flex-shrink: 0; }
.logo-name { font-family: var(--display); font-size: 13px; font-weight: 300; letter-spacing: .32em; text-transform: uppercase; }
.site-header.is-fixed .logo-seal { display: none; }
.site-header.is-fixed .logo-sig { display: block; }
.desktop-nav { display: flex; align-items: center; gap: clamp(28px, 4vw, 58px); font-family: var(--label); font-size: 11px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; }
.desktop-nav a { position: relative; padding: 14px 0; }
.desktop-nav a::before { content: ""; position: absolute; left: -14px; top: 50%; width: 0; height: 1px; background: currentColor; transition: width .25s ease; }
.desktop-nav a:hover::before, .desktop-nav a[aria-current="page"]::before { width: 10px; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 24px; }
.header-contact { font-family: var(--label); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.menu-toggle { width: 34px; height: 34px; padding: 7px 0; border: 0; background: transparent; display: flex; flex-direction: column; justify-content: center; gap: 7px; }
.menu-toggle span { display: block; height: 1px; background: currentColor; }
.menu-toggle span:first-child { width: 100%; }
.menu-toggle span:last-child { width: 72%; margin-left: auto; }

.menu-overlay { position: fixed; inset: 0; z-index: 100; padding: 34px 40px; background: var(--ink); color: var(--white); display: grid; grid-template-rows: auto 1fr auto; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s ease, visibility .35s ease; }
.menu-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.menu-top, .menu-foot { display: flex; align-items: center; justify-content: space-between; }
.menu-top img { width: 210px; }
.menu-close { padding: 11px 20px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: var(--white); font-family: var(--label); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.overlay-nav { align-self: center; width: min(920px, 100%); margin-inline: auto; }
.overlay-nav a { display: flex; gap: 22px; align-items: baseline; border-bottom: 1px solid rgba(255,255,255,.15); padding: 12px 0; font-family: var(--display); font-size: clamp(42px, 6vw, 82px); font-weight: 300; line-height: 1; }
.overlay-nav a span { color: var(--rose); font-family: var(--label); font-size: 9px; letter-spacing: .2em; }
.overlay-nav a:hover { color: var(--rose); }
.menu-foot { color: rgba(255,255,255,.58); font-family: var(--label); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }

/* Home hero */
.m-hero { height: 100svh; min-height: 690px; position: relative; color: var(--white); overflow: hidden; }
.m-hero > img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.m-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.04) 70%); }
.m-hero-content { position: absolute; z-index: 2; left: max(8vw, 80px); top: 50%; transform: translateY(-32%); width: min(500px, 42vw); }
.m-hero-content h1 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(58px, 6.1vw, 88px); font-weight: 300; line-height: 1.02; letter-spacing: -.045em; }
.m-hero-content p { max-width: 470px; margin: 0 0 36px; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.8; }
.hero-scroll { position: absolute; z-index: 2; right: 40px; bottom: 40px; font-family: var(--label); font-size: 9px; letter-spacing: .25em; text-transform: uppercase; writing-mode: vertical-rl; }

/* Home sections */
.m-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; text-align: center; }
.m-intro .m-copy { text-align: left; }
.m-seal { width: 132px; height: 132px; margin: 38px auto 0; color: var(--rose); transform: rotate(-4deg); transition: transform .45s ease; }
.m-seal:hover { transform: rotate(0deg) scale(1.025); }
.m-seal svg { width: 100%; height: 100%; display: block; overflow: visible; }
.seal-ring, .seal-thistle path, .seal-knot path, .seal-rule { fill: none; stroke: currentColor; vector-effect: non-scaling-stroke; }
.seal-ring-outer { stroke-width: 1.15; }
.seal-ring-inner { stroke-width: .65; stroke-dasharray: 1.5 3.5; }
.seal-name, .seal-place, .seal-founded { fill: var(--ink); font-family: var(--label); font-weight: 500; letter-spacing: .22em; }
.seal-name { font-size: 8px; }
.seal-place { font-size: 7.5px; }
.seal-founded { fill: var(--muted); font-size: 4.8px; letter-spacing: .16em; }
.seal-thistle path { stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
.seal-knot path { stroke-width: .8; stroke-linecap: round; }
.seal-monogram { fill: var(--rose); font-family: var(--serif); font-size: 36px; font-weight: 400; letter-spacing: -.1em; }
.seal-rule { stroke-width: .7; }
.m-journal { padding: 0 0 130px; }
.m-journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.m-story-card figure { margin: 0 0 28px; overflow: hidden; }
.m-story-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .7s ease; }
.m-story-card:hover img { transform: scale(1.035); }
.m-card-meta { display: flex; gap: 24px; margin-bottom: 12px; font-family: var(--label); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.m-story-card h3 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(26px, 2.4vw, 36px); font-weight: 300; line-height: 1.2; }
.m-story-card p { color: var(--muted); margin: 0; }

.m-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; background: var(--blush); }
.m-split-copy { padding: clamp(60px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.m-split-copy .m-copy { max-width: 540px; margin: 26px 0 30px; }
.m-split-media { overflow: hidden; }
.m-split-media img { width: 100%; height: 100%; object-fit: cover; }
.m-stats { display: grid; grid-template-columns: repeat(4,1fr); background: var(--white); }
.m-stat { min-height: 210px; padding: 44px 30px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; text-align: center; }
.m-stat:last-child { border-right: 0; }
.m-stat strong { font-family: var(--display); font-size: 42px; font-weight: 300; }
.m-stat span { margin-top: 8px; color: var(--muted); font-family: var(--label); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }

.m-promo { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: var(--blush); }
.m-promo-media img { width: 100%; height: 100%; object-fit: cover; }
.m-promo-copy { padding: clamp(60px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.m-promo-copy .m-copy { margin: 22px 0 30px; }

.m-services { padding: 125px 24px; }
.m-section-head { max-width: 680px; margin: 0 auto 68px; text-align: center; }
.m-section-head .m-copy { margin-top: 18px; }
.m-service-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.m-service-card { min-height: 390px; position: relative; overflow: hidden; color: var(--white); }
.m-service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.m-service-card::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.2); transition: background .3s ease; }
.m-service-card:nth-child(2)::after { background: rgba(201,133,122,.32); }
.m-service-card:nth-child(3)::after { background: rgba(0,0,0,.46); }
.m-service-card:nth-child(4)::after { background: rgba(221,187,139,.32); }
.m-service-card:hover img { transform: scale(1.04); }
.m-service-card:hover::after { background: rgba(0,0,0,.5); }
.m-service-card div { position: absolute; z-index: 2; inset: auto 28px 28px; }
.m-service-card span { font-family: var(--label); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.m-service-card h3 { margin: 8px 0 0; font-family: var(--display); font-size: 28px; font-weight: 300; }

.m-location-section { background: var(--blush); padding: 125px 0; }
.m-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.m-location-list { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 30px; margin-top: 45px; }
.m-location h3 { margin: 0 0 10px; font-family: var(--display); font-size: 28px; font-weight: 300; }
.m-location p { margin: 0; color: var(--muted); }
.m-location-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.m-location-media img { width: 100%; height: 430px; object-fit: cover; }
.m-location-media img:last-child { margin-top: 55px; }

.m-social-row { display: grid; grid-template-columns: repeat(4,1fr); }
.m-social-row a { min-height: 150px; border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.m-social-row a:last-child { border-right: 0; }
.m-social-row small { font-family: var(--label); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.m-social-row strong { margin-top: 6px; font-family: var(--display); font-size: 24px; font-weight: 300; }

/* Inner heroes */
.inner-hero { height: 510px; position: relative; color: var(--white); overflow: hidden; }
.inner-hero > img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.inner-hero.mono > img { filter: grayscale(1); }
.inner-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.2); }
.inner-hero-content { position: absolute; z-index: 2; inset: 0; padding-top: var(--header-h); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.inner-hero-content .m-eyebrow { margin-bottom: 4px; }
.inner-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(42px,5vw,64px); font-weight: 300; letter-spacing: -.035em; }
.inner-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; text-align: right; }
.inner-intro .m-copy { text-align: left; }
.feature-strip { background: var(--blush); padding: 90px 0; }
.feature-grid { width: var(--wide); margin-inline:auto; display: grid; grid-template-columns: repeat(5,1fr); gap: 25px; }
.feature-item { text-align: center; }
.feature-icon { width: 48px; height: 48px; margin: 0 auto 18px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-size: 18px; }
.feature-item h3 { margin: 0; font-family: var(--display); font-size: 17px; font-weight: 400; line-height: 1.35; }
.feature-media { width: min(1040px, calc(100% - 48px)); height: 560px; margin: 0 auto -70px; position: relative; top: 70px; overflow: hidden; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media-copy { position: absolute; inset: 0; background: rgba(0,0,0,.2); color: var(--white); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.feature-media-copy h2 { margin: 0; font-family: var(--display); font-size: 44px; font-weight: 300; }
.icon-section { padding: 170px 0 120px; }
.icon-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 45px; }
.icon-card { text-align: center; }
.icon-line { width: 70px; height: 70px; margin: 0 auto 22px; border: 1px solid var(--blush-2); border-radius: 50%; display: grid; place-items: center; color: var(--rose); font-family: var(--display); font-size: 24px; }
.icon-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 22px; font-weight: 300; }
.icon-card p { margin: 0; color: var(--muted); font-size: 14px; }
.founder-block { width:var(--shell); margin:0 auto 120px; padding:64px clamp(40px,5.2vw,76px); display:grid; grid-template-columns:minmax(280px,360px) minmax(0,1fr); gap:clamp(52px,7vw,96px); align-items:center; position:relative; background:linear-gradient(90deg, var(--white) 0 13%, var(--blush) 13% 100%); }
.founder-block::after { content:"01"; position:absolute; right:30px; top:24px; color:rgba(201,133,122,.32); font-family:var(--serif); font-size:42px; line-height:1; }
.founder-block figure { width:100%; height:460px; margin:0; position:relative; z-index:1; }
.founder-block figure::before { content:""; position:absolute; inset:-14px 14px 14px -14px; z-index:-1; border:1px solid var(--blush-2); }
.founder-block img { width:100%; height:100%; object-fit:cover; object-position:center 20%; }
.founder-block figcaption { position:absolute; left:-16px; bottom:18px; min-width:132px; padding:12px 17px; background:var(--white); box-shadow:0 12px 28px rgba(23,23,23,.08); display:flex; flex-direction:column; }
.founder-block figcaption span { color:var(--muted); font-family:var(--label); font-size:7px; letter-spacing:.2em; text-transform:uppercase; }
.founder-block figcaption strong { margin-top:1px; font-family:var(--serif); font-size:14px; font-weight:400; }
.founder-copy { max-width:520px; padding:0; display:flex; flex-direction:column; align-items:flex-start; }
.founder-copy .m-heading { margin-top:9px; font-size:clamp(42px,4.3vw,60px); }
.founder-role { margin:10px 0 0; color:var(--rose); font-family:var(--label); font-size:9px; letter-spacing:.18em; text-transform:uppercase; }
.founder-copy .m-copy { margin:27px 0 20px; font-size:15px; line-height:1.82; }
.founder-copy .m-copy p:last-child { margin-bottom:0; }
.founder-link { margin-top:4px; }

/* Brand and approach */
.brand-intro-lockup { margin: 0 0 24px; font-family: var(--display); font-size: clamp(70px,11vw,155px); font-weight: 300; letter-spacing: .14em; line-height: .8; }
.brand-intro-lockup span { color: var(--rose); }
.brand-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; padding-bottom:120px; }
.brand-gallery figure { margin:0; }
.brand-gallery img { width:100%; aspect-ratio:3/4; object-fit:cover; }
.brand-gallery figcaption { margin-top:15px; display:flex; justify-content:space-between; font-family:var(--label); font-size:9px; letter-spacing:.18em; text-transform:uppercase; }
.approach-list { border-top:1px solid var(--line); }
.approach-row { padding:42px 0; border-bottom:1px solid var(--line); display:grid; grid-template-columns:80px 1fr 1fr; gap:5vw; align-items:start; }
.approach-row > span { font-family:var(--label); font-size:9px; letter-spacing:.2em; }
.approach-row h2 { margin:0; font-family:var(--display); font-size:34px; font-weight:300; }
.approach-row p { margin:0; color:var(--muted); }

/* Journal */
.journal-page { padding:120px 0; }
.journal-entry { padding:90px 0; border-top:1px solid var(--line); scroll-margin-top:80px; display:grid; grid-template-columns:.7fr 1.3fr; gap:8vw; }
.journal-entry:first-child { border-top:0; padding-top:0; }
.journal-entry h2 { margin:0; font-family:var(--display); font-size:clamp(34px,4vw,52px); font-weight:300; line-height:1.15; }
.journal-entry .m-copy blockquote { margin:36px 0; padding:25px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); color:var(--ink); font-size:23px; }

/* Contact */
.contact-reference-hero { height: 510px; position: relative; overflow: hidden; background: var(--blush-2); }
.contact-reference-hero::before { content:""; position:absolute; inset:-15%; opacity:.16; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23322b29' stroke-width='5'%3E%3Cpath d='M-40 190 C180 80 260 40 420 210 S720 410 980 125 1300 230 1250 400'/%3E%3Cpath d='M40 520 C260 250 210 160 390 480 S630 120 890 500 1090 80 1260 320'/%3E%3Cpath d='M350 -50 C500 110 590 20 710 190 S930 250 1080 -30'/%3E%3C/g%3E%3C/svg%3E"); background-size:cover; background-position:center; }
.contact-reference-hero .inner-hero-content { color:var(--ink); }
.contact-details-band { background:var(--blush); padding:110px 0; }
.contact-details-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:55px; }
.contact-detail .m-eyebrow { margin-bottom:10px; }
.contact-detail h3 { margin:0 0 12px; font-family:var(--display); font-size:26px; font-weight:300; }
.contact-detail p, .contact-detail a { margin:0; color:var(--muted); }
.contact-form-section { display:grid; grid-template-columns:.85fr 1.15fr; gap:8vw; align-items:start; padding:120px 0; }
.contact-form { padding:55px; background:var(--blush); }
.form-heading { margin-bottom:45px; }
.form-heading span { display:block; font-family:var(--display); font-size:38px; font-weight:300; }
.form-heading p { margin:10px 0 0; color:var(--muted); }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:25px; }
.contact-form label:not(.consent) { display:block; margin-bottom:30px; }
.contact-form label > span { display:block; margin-bottom:8px; font-family:var(--label); font-size:9px; letter-spacing:.18em; text-transform:uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width:100%; padding:10px 0; border:0; border-bottom:1px solid rgba(23,23,23,.35); border-radius:0; background:transparent; outline:none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color:var(--ink); }
.contact-form textarea { resize:vertical; }
.consent { display:flex; gap:10px; align-items:flex-start; margin:0 0 25px; color:var(--muted); font-size:12px; }
.consent input { margin-top:5px; accent-color:var(--ink); }
.submit-button { border-color:var(--ink); background:var(--ink); color:var(--white); }
.submit-button:hover { background:transparent; color:var(--ink); }
.form-status { min-height:18px; margin:18px 0 0; font-size:13px; }
.form-status.is-error { color:#9b3535; }
.form-trap { position:absolute!important; left:-9999px!important; }
.contact-side .m-copy { margin:25px 0 40px; }
.contact-side img { width:100%; aspect-ratio:4/3; object-fit:cover; filter:grayscale(1); }

/* Footer */
.site-footer { background:#242424; color:var(--white); }
.footer-main { width:var(--wide); margin-inline:auto; padding:70px 0; display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:5vw; }
.footer-brand-mark { width:48px; height:48px; margin-bottom:18px; object-fit:cover; }
.footer-main p { margin:0; color:rgba(255,255,255,.6); font-size:14px; line-height:1.7; }
.footer-main h3 { margin:0 0 20px; font-family:var(--display); font-size:15px; font-weight:400; }
.footer-main nav, .footer-main .footer-contact { display:flex; flex-direction:column; gap:6px; color:rgba(255,255,255,.62); font-size:13px; }
.footer-bottom { padding:15px 24px; border-top:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.45); font-family:var(--label); font-size:8px; letter-spacing:.16em; text-align:center; text-transform:uppercase; }

.error-page { min-height:100svh; background:var(--ink); color:var(--white); }
.error-page main { min-height:100svh; padding:38px 40px; position:relative; display:grid; grid-template-rows:auto 1fr; overflow:hidden; }
.error-logo { width:210px; position:relative; z-index:2; }
.error-code { position:absolute; inset:0; display:grid; place-items:center; color:rgba(255,255,255,.035); font-family:var(--display); font-size:min(50vw,680px); font-weight:300; }
.error-copy { position:relative; z-index:2; align-self:center; justify-self:center; max-width:760px; padding-bottom:80px; text-align:center; }
.error-copy > span { font-family:var(--label); font-size:9px; letter-spacing:.25em; text-transform:uppercase; }
.error-copy h1 { margin:24px 0 45px; font-family:var(--display); font-size:clamp(42px,6vw,78px); font-weight:300; line-height:1.1; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity:1; transform:none; }
.reveal-image { overflow:hidden; }
.reveal-image img { transform:scale(1.035); transition:transform 1s ease; }
.reveal-image.is-visible img { transform:scale(1); }

@media (max-width: 1050px) {
  :root { --header-h: 82px; }
  .site-header { height:82px; padding:0 24px; grid-template-columns:1fr auto; }
  .desktop-nav, .header-contact { display:none; }
  .site-logo { width:50px; height:50px; }
  .m-service-grid { grid-template-columns:1fr 1fr; }
  .feature-grid { grid-template-columns:repeat(3,1fr); row-gap:45px; }
  .feature-item:nth-child(4), .feature-item:nth-child(5) { grid-column:auto; }
  .footer-main { grid-template-columns:1.4fr repeat(2,1fr); }
  .footer-main > div:nth-child(4), .footer-main > div:nth-child(5) { margin-top:25px; }
}

@media (max-width: 720px) {
  :root { --shell:calc(100% - 36px); --wide:calc(100% - 36px); --header-h:72px; }
  body { font-size:15px; }
  .section-space { padding-top:85px; padding-bottom:85px; }
  .site-header, .site-header.on-light { height:72px; padding:0 20px; color:var(--ink); background:var(--white); }
  .site-logo, .site-header.on-light .site-logo { background:transparent; }
  .logo-seal { display:none; }
  .logo-sig { display:block; height:40px; }
  .menu-overlay { padding:22px 20px; }
  .menu-top img { width:180px; }
  .overlay-nav a { font-size:42px; }
  .menu-foot { flex-direction:column; align-items:flex-start; gap:7px; }
  .m-hero { height:100svh; min-height:650px; padding-top:72px; background:var(--white); }
  .m-hero > img { height:calc(100% - 72px); object-position:52% center; }
  .m-hero-content { left:28px; top:54%; width:78%; transform:translateY(-20%); }
  .m-hero-content h1 { font-size:48px; }
  .m-hero-content p { display:none; }
  .m-hero-content .m-button { min-height:45px; padding:0 20px; }
  .hero-scroll { display:none; }
  .m-intro, .m-split, .m-promo, .m-locations, .inner-intro, .founder-block, .contact-form-section { grid-template-columns:1fr; }
  .m-intro { gap:42px; text-align:left; }
  .m-intro .m-copy, .inner-intro, .inner-intro .m-copy { text-align:left; }
  .m-seal { margin-left:0; }
  .m-journal { padding-bottom:85px; }
  .m-journal-grid { grid-template-columns:1fr; gap:60px; }
  .m-split-media, .m-promo-media { min-height:480px; }
  .m-split-copy, .m-promo-copy { padding:75px 28px; }
  .m-stats { grid-template-columns:1fr 1fr; }
  .m-stat { min-height:160px; border-bottom:1px solid var(--line); }
  .m-service-grid { grid-template-columns:1fr; }
  .m-service-card { min-height:460px; }
  .m-services { padding:85px 14px; }
  .m-location-list { grid-template-columns:1fr; gap:35px; }
  .m-location-media { margin-top:55px; }
  .m-location-media img { height:320px; }
  .m-social-row { grid-template-columns:1fr 1fr; }
  .m-social-row a { min-height:120px; border-bottom:1px solid var(--line); }
  .inner-hero { height:520px; padding-top:72px; background:var(--white); }
  .inner-hero > img { height:100%; }
  .inner-hero.scottish-hero > img { object-position:72% center; }
  .inner-hero.gracea-hero > img { object-position:72% center; }
  .inner-hero-content { padding-top:72px; }
  .inner-hero h1 { font-size:44px; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .feature-item:last-child { grid-column:1/-1; }
  .feature-media { height:420px; }
  .icon-grid { grid-template-columns:1fr 1fr; gap:55px 25px; }
  .founder-block { width:var(--shell); margin-bottom:85px; padding:38px 24px 48px; gap:46px; background:var(--blush); }
  .founder-block::after { right:20px; top:18px; font-size:34px; }
  .founder-block figure { width:min(290px,100%); height:390px; min-height:0; margin:0 auto; }
  .founder-block figcaption { left:-10px; bottom:14px; }
  .founder-copy { max-width:none; }
  .founder-copy .m-heading { font-size:42px; }
  .brand-intro-lockup { font-size:15.5vw; letter-spacing:.1em; }
  .brand-gallery { grid-template-columns:1fr; }
  .approach-row { grid-template-columns:45px 1fr; gap:20px; }
  .approach-row p { grid-column:2; }
  .journal-page { padding:85px 0; }
  .journal-entry { grid-template-columns:1fr; gap:35px; padding:70px 0; }
  .contact-reference-hero { height:440px; }
  .contact-details-band { padding:80px 0; }
  .contact-details-grid { grid-template-columns:1fr 1fr; gap:45px 28px; }
  .contact-form-section { padding:85px 0; }
  .contact-side { order:2; }
  .contact-form { padding:38px 25px; }
  .field-row { grid-template-columns:1fr; gap:0; }
  .footer-main { width:var(--wide); padding:55px 0; grid-template-columns:1fr 1fr; gap:45px 25px; }
  .footer-main > div:first-child { grid-column:1/-1; }
  .footer-main > div:nth-child(4), .footer-main > div:nth-child(5) { margin-top:0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
  .reveal-image img { transform:none; }
}
