/* ============================================================
   D'Arcadia Property Management — Direction A "Cinematic"
   Static build. Plain HTML/CSS/vanilla-JS. No framework runtime.
   ============================================================ */

/* ---------- Fonts (self-hosted, no external calls) ---------- */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/instrument-sans-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/instrument-sans-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/marcellus-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/marcellus-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  --ink:        #14120E;
  --surface:    #1E1B16;
  --gold:       #BF9555;
  --gold-bright:#D9B36A;
  --bone:       #F2EDE3;
  --bone-2:     #E5DECF;
  --taupe:      #A99F8E;
  --hairline:   rgba(191,149,85,0.22);
  --serif: 'Marcellus', 'Times New Roman', serif;
  --sans:  'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 10vw, 128px);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--ink); }

@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

/* Accessibility: visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Shared helpers ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
}
.band { border-top: 1px solid rgba(191,149,85,0.18); background: var(--surface); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h2.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  margin: 0;
}
.lead {
  color: var(--taupe);
  font-size: 17px;
  line-height: 1.6;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad);
  background: linear-gradient(to bottom, rgba(20,18,14,0.92), rgba(20,18,14,0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191,149,85,0.18);
}
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: clamp(38px, 5vw, 50px); width: auto; }

.nav-desktop { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 36px); }
.nav-link {
  color: var(--bone);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--gold-bright); }
.nav-cta {
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: background 0.2s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--gold-bright); }
.lang { color: var(--taupe); font-size: 13px; letter-spacing: 0.12em; white-space: nowrap; }
.lang b { color: var(--bone); font-weight: 400; }
.lang a { color: var(--taupe); text-decoration: none; transition: color 0.2s ease; }
.lang a:hover, .lang a:focus-visible { color: var(--gold-bright); }
.lang a[aria-current="true"] { color: var(--bone); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(191,149,85,0.5);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  min-height: 44px;
}

.nav-mobile {
  position: fixed;
  top: 67px; left: 0; right: 0;
  z-index: 49;
  background: rgba(20,18,14,0.97);
  border-bottom: 1px solid rgba(191,149,85,0.25);
  flex-direction: column;
  padding: 12px 24px 24px;
  display: flex;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  color: var(--bone);
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(191,149,85,0.14);
}
.nav-mobile a.is-cta { color: var(--gold-bright); font-weight: 600; border-bottom: none; }
.nav-mobile .lang { padding-top: 10px; }

@media (max-width: 820px) {
  .nav-desktop { display: none; }
  .nav-toggle  { display: inline-block; }
}
@media (min-width: 821px) {
  .nav-mobile { display: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--gold-bright); }
.btn-ghost {
  background: none;
  border: 1px solid rgba(242,237,227,0.45);
  color: var(--bone);
  font-weight: 500;
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--gold-bright); color: var(--gold-bright); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 60% 40%;
  animation: kenburns 32s ease-in-out infinite alternate;
}
/* Crossfade tra le foto ruotanti dell'hero */
.hero-img { opacity: 0; transition: opacity 2s ease-in-out; }
.hero-img.is-active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,18,14,0.96) 0%,
    rgba(20,18,14,0.55) 40%,
    rgba(20,18,14,0.25) 70%,
    rgba(20,18,14,0.45) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px var(--pad) clamp(64px, 9vh, 110px);
}
.rule { width: 64px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7.2vw, 96px);
  line-height: 1.04;
  margin: 0 0 24px;
  max-width: 15ch;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--bone-2);
  margin: 0 0 36px;
  max-width: 56ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid rgba(191,149,85,0.25);
  border-bottom: 1px solid rgba(191,149,85,0.25);
  background: var(--surface);
}
.trust-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.trust-fact { display: flex; flex-direction: column; gap: 6px; }
.trust-fact .stat {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--gold-bright);
  line-height: 1;
}
.trust-fact .label { font-size: 14px; color: var(--taupe); line-height: 1.5; }

/* ---------- Services ---------- */
.services h2.display { margin-bottom: 16px; max-width: 20ch; }
.services .intro { margin: 0 0 clamp(40px, 5vw, 64px); max-width: 58ch; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 56px);
}
.service {
  border-top: 1px solid rgba(191,149,85,0.4);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service .num { font-family: var(--serif); color: var(--gold); font-size: 15px; letter-spacing: 0.08em; }
.service h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  color: var(--bone);
}
.service p { font-size: 15px; line-height: 1.6; color: var(--taupe); }

/* ---------- Apartments ---------- */
.apartments-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.apartments-head h2.display { max-width: 18ch; }
.apartments-head .note { color: var(--taupe); font-size: 15px; max-width: 34ch; line-height: 1.6; }
.apartments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 900px) { .apartments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .apartments-grid { grid-template-columns: 1fr; } }
.apt-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 3;
  outline: 1px solid transparent;
  outline-offset: -1px;
}
.apt-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.apt-card:hover { outline-color: rgba(217,179,106,0.6); }
.apt-card:hover img { transform: scale(1.05); }
.apt-card:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: -2px; }
.apt-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,18,14,0.92) 0%,
    rgba(20,18,14,0.25) 45%,
    rgba(20,18,14,0) 65%);
}
.apt-meta {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apt-meta .name { font-family: var(--serif); font-size: 20px; color: var(--bone); line-height: 1.25; }
.apt-meta .zone {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ---------- Areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.areas-intro h2.display { margin-bottom: 16px; }
.areas-intro p { margin-bottom: 28px; max-width: 46ch; }
.areas-photo { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.areas-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.areas-photo .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,14,0.6), rgba(20,18,14,0.05));
}
.areas-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(20px, 3vw, 40px);
  align-self: center;
}
.areas-list li {
  border-bottom: 1px solid var(--hairline);
  padding: 13px 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.areas-list .tick { width: 14px; height: 1px; background: var(--gold); flex-shrink: 0; transform: translateY(-4px); }
.areas-list span.name { font-size: 15px; color: var(--bone-2); line-height: 1.4; }

/* ---------- About ---------- */
.about-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about-portrait {
  max-width: 340px;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(45deg, #24211A, #24211A 10px, #1E1B16 10px, #1E1B16 20px);
  border: 1px solid rgba(191,149,85,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.about-portrait span { font-family: monospace; font-size: 13px; color: var(--taupe); text-align: center; padding: 0 20px; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-body h2.display { margin-bottom: 20px; max-width: 18ch; font-size: clamp(30px, 4vw, 48px); line-height: 1.12; }
.about-body p { font-size: 17px; line-height: 1.7; color: var(--bone-2); max-width: 54ch; margin-bottom: 16px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(217,179,106,0.5);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.text-link:hover, .text-link:focus-visible { color: var(--bone); border-bottom-color: var(--bone); }

/* ---------- Testimonials ---------- */
.testimonials .eyebrow { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}
.testimonial { margin: 0; display: flex; flex-direction: column; gap: 16px; }
.testimonial .mark { font-family: var(--serif); font-size: 52px; line-height: 0.5; color: var(--gold); height: 22px; }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.6;
  color: var(--bone);
  text-wrap: pretty;
}
@media (max-width: 920px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { gap: 20px; }
}
.testimonial figcaption {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- Contact / footer ---------- */
.contact {
  position: relative;
  border-top: 1px solid rgba(191,149,85,0.25);
  background: var(--ink);
}
.contact-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) var(--pad) clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 96px);
}
.contact-info h2.display { margin-bottom: 20px; max-width: 16ch; }
.contact-info p.lead { margin-bottom: 32px; max-width: 46ch; }
.contact-lines { display: flex; flex-direction: column; gap: 14px; }
.contact-lines a { color: var(--bone); text-decoration: none; font-size: 18px; font-family: var(--serif); transition: color 0.2s ease; }
.contact-lines a:hover, .contact-lines a:focus-visible { color: var(--gold-bright); }
.contact-lines span { color: var(--taupe); font-size: 15px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}
.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid rgba(191,149,85,0.3);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold-bright); }
.contact-form button { align-self: flex-start; padding: 12px 36px; }

.site-footer { border-top: 1px solid rgba(191,149,85,0.18); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-inner img { height: 34px; width: auto; opacity: 0.85; }
.footer-inner p { color: var(--taupe); font-size: 13px; line-height: 1.6; }
.footer-inner p a { color: var(--taupe); text-decoration: none; transition: color 0.2s ease; }
.footer-inner p a:hover, .footer-inner p a:focus-visible { color: var(--gold-bright); }
.footer-inner .lang { font-size: 13px; letter-spacing: 0.12em; }

/* ---------- Form status message ---------- */
.form-status { color: var(--gold-bright); font-size: 14px; min-height: 1em; }
.form-status.is-error { color: #E0876B; }

/* Honeypot anti-spam field — hidden from users, visible to bots */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-form button[disabled] { opacity: 0.6; cursor: progress; }

/* ============================================================
   INNER PAGES (About, Services, Portfolio)
   ============================================================ */

/* Active nav item */
.nav-link[aria-current="page"] { color: var(--gold-bright); }
.nav-mobile a[aria-current="page"] { color: var(--gold-bright); }

/* Masthead — page header band that clears the fixed nav */
.masthead {
  position: relative;
  border-bottom: 1px solid rgba(191,149,85,0.18);
  overflow: hidden;
}
.masthead .masthead-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(128px, 18vh, 200px) var(--pad) clamp(48px, 7vw, 88px);
}
.masthead h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.05;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.masthead p.lead {
  margin-top: 20px;
  max-width: 60ch;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--bone-2);
  line-height: 1.65;
}
/* Photographic masthead variant */
.masthead-photo { position: absolute; inset: 0; z-index: 0; }
.masthead-photo img { width: 100%; height: 100%; object-fit: cover; }
.masthead-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,14,0.97) 6%, rgba(20,18,14,0.72) 55%, rgba(20,18,14,0.55) 100%);
}

/* Breadcrumb */
.crumb { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); margin-bottom: 18px; }
.crumb a { color: var(--taupe); text-decoration: none; }
.crumb a:hover, .crumb a:focus-visible { color: var(--gold-bright); }

/* ---------- About page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 820px) { .about-intro { grid-template-columns: 1fr; } }
.about-intro .portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(45deg, #24211A, #24211A 10px, #1E1B16 10px, #1E1B16 20px);
  border: 1px solid rgba(191,149,85,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 96px;
}
@media (max-width: 820px) { .about-intro .portrait { position: static; max-width: 340px; } }
.about-intro .portrait span { font-family: monospace; font-size: 13px; color: var(--taupe); text-align: center; padding: 0 20px; }
.about-intro .portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Founder photo (landscape) sulla pagina Chi siamo */
.founder-photo {
  margin: 0 0 clamp(36px, 5vw, 64px);
  border: 1px solid rgba(191,149,85,0.3);
  overflow: hidden;
}
.founder-photo img { width: 100%; height: auto; display: block; }
.founder-prose { max-width: 900px; }
.prose p { font-size: 17px; line-height: 1.75; color: var(--bone-2); margin-bottom: 20px; max-width: 62ch; }
.prose p:first-child { font-size: clamp(18px, 1.9vw, 22px); color: var(--bone); font-family: var(--serif); line-height: 1.5; }
.prose a.inline { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid rgba(217,179,106,0.5); }
.prose a.inline:hover, .prose a.inline:focus-visible { color: var(--bone); border-bottom-color: var(--bone); }

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.timeline li {
  border-top: 1px solid rgba(191,149,85,0.4);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.timeline .when { font-family: var(--serif); color: var(--gold-bright); font-size: clamp(22px, 2.2vw, 28px); line-height: 1; }
.timeline .what { font-size: 14px; color: var(--taupe); line-height: 1.5; }

.pullquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.3;
  color: var(--bone);
  max-width: 24ch;
  text-wrap: balance;
  border-left: 2px solid var(--gold);
  padding-left: clamp(20px, 3vw, 40px);
}

/* ---------- Services page ---------- */
.svc-list { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 96px); }
.svc-item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(191,149,85,0.3);
}
@media (max-width: 760px) { .svc-item { grid-template-columns: 1fr; gap: 16px; } }
.svc-item .svc-head { display: flex; flex-direction: column; gap: 10px; }
.svc-item .svc-num { font-family: var(--serif); color: var(--gold); font-size: 15px; letter-spacing: 0.14em; }
.svc-item h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  color: var(--bone);
  margin: 0;
  max-width: 14ch;
}
.svc-item .svc-body p { font-size: 16px; line-height: 1.75; color: var(--bone-2); margin-bottom: 16px; max-width: 66ch; }
.svc-item .svc-body ul { list-style: none; display: grid; gap: 12px; margin-top: 6px; }
.svc-item .svc-body ul li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 15px; color: var(--bone-2); line-height: 1.5;
  border-bottom: 1px solid var(--hairline); padding-bottom: 12px;
}
.svc-item .svc-body ul .tick { width: 14px; height: 1px; background: var(--gold); flex-shrink: 0; transform: translateY(-4px); }

/* ---------- Portfolio page ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.pf-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3 / 2;
  outline: 1px solid transparent;
  outline-offset: -1px;
}
.pf-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.pf-card:hover { outline-color: rgba(217,179,106,0.6); }
.pf-card:hover img { transform: scale(1.05); }
.pf-card:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: -2px; }
.pf-card .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,14,0.94) 0%, rgba(20,18,14,0.3) 48%, rgba(20,18,14,0) 68%);
}
.pf-card .meta { position: absolute; left: 22px; right: 22px; bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.pf-card .meta .name { font-family: var(--serif); font-size: 22px; color: var(--bone); line-height: 1.2; }
.pf-card .meta .zone { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); }
.pf-card .meta .go {
  margin-top: 4px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone-2); display: inline-flex; align-items: center; gap: 8px; opacity: 0.9;
}
.pf-note {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  color: var(--taupe);
  font-size: 14px;
  line-height: 1.6;
  max-width: 70ch;
}

/* ---------- Testimonial original-text disclosure ---------- */
.tm-orig { margin-top: 2px; }
.tm-orig summary {
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.tm-orig summary::-webkit-details-marker { display: none; }
.tm-orig summary::before { content: "+"; color: var(--gold); font-size: 15px; }
.tm-orig[open] summary::before { content: "\2013"; }
.tm-orig summary:hover, .tm-orig summary:focus-visible { color: var(--gold-bright); }
.tm-orig[open] summary { color: var(--gold-bright); margin-bottom: 12px; }
.tm-orig p { font-size: 14px; line-height: 1.65; color: var(--taupe); font-style: italic; max-width: 54ch; }

/* ---------- Legal pages (privacy, terms) ---------- */
.legal { max-width: 760px; }
.legal > p:first-child { color: var(--bone-2); font-size: 17px; line-height: 1.7; margin-bottom: 8px; }
.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--bone);
  margin: 44px 0 12px;
  line-height: 1.2;
}
.legal p { font-size: 16px; line-height: 1.75; color: var(--bone-2); margin-bottom: 14px; }
.legal ul { list-style: none; display: grid; gap: 10px; margin: 8px 0 16px; }
.legal ul li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; line-height: 1.6; color: var(--bone-2); }
.legal ul li .tick { width: 14px; height: 1px; background: var(--gold); flex-shrink: 0; transform: translateY(-4px); }
.legal a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid rgba(217,179,106,0.4); }
.legal a:hover, .legal a:focus-visible { color: var(--bone); border-bottom-color: var(--bone); }
.legal .placeholder { color: var(--gold); font-style: italic; }
.legal .updated {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.6;
}

/* Footer privacy link inherits .footer-inner p a styling */

/* ---------- Reusable CTA band ---------- */
.cta-band { border-top: 1px solid rgba(191,149,85,0.25); background: var(--surface); }
.cta-band .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  margin: 0;
  max-width: 18ch;
}
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  font-family: var(--serif); font-size: clamp(18px, 2vw, 23px); line-height: 1.3;
  color: var(--bone); transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 26px; line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover, .faq-item summary:focus-visible { color: var(--gold-bright); }
.faq-item[open] summary { color: var(--gold-bright); }
.faq-answer { padding: 0 0 28px; }
.faq-answer p { font-size: 16px; line-height: 1.75; color: var(--bone-2); max-width: 68ch; margin: 0; }
