/* ==========================================================================
   Public site styles
   Self-contained: no web fonts, no CDNs, nothing external to load.
   ========================================================================== */

:root {
  /* Warm neutral + a soft bronze accent: reads as "considered professional"
     rather than tied to any one trade. The accent is editable in the manager. */
  --accent: #b0895a;

  --ivory:      #faf8f5;
  --tint:       #f0ede7;
  --card:       #ffffff;
  --deep:       #2b3138;
  --deep-soft:  #3a424b;
  --ink:        #22262a;
  --body:       #565d64;
  --muted:      #828a91;
  --line:       rgba(43, 49, 56, .14);
  --line-soft:  rgba(43, 49, 56, .08);

  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino,
           "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
           Arial, "Noto Sans", sans-serif;

  --wrap: 1180px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(34, 38, 42, .05), 0 4px 14px rgba(34, 38, 42, .05);
  --shadow-md: 0 2px 6px rgba(34, 38, 42, .06), 0 18px 44px rgba(34, 38, 42, .09);
  --shadow-lg: 0 30px 70px rgba(34, 38, 42, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- Reset ---------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 999;
  background: var(--deep); color: #fff; padding: 10px 18px;
  border-radius: var(--radius); text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

/* --- Type utilities ------------------------------------------------------- */

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .9rem;
}
.eyebrow.light { color: rgba(255, 255, 255, .82); }

.section-title { font-size: clamp(1.85rem, 1.15rem + 2.1vw, 2.85rem); }

.section-intro {
  font-size: 1.06rem;
  color: var(--body);
  max-width: 62ch;
}

.section { padding: clamp(64px, 8vw, 118px) 0; }
.section-tint { background: var(--tint); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 56px); }
.section-head .section-intro { margin-top: .4rem; }

.section-note {
  margin-top: 34px;
  font-size: .93rem;
  color: var(--muted);
  max-width: 70ch;
  padding-left: 16px;
  border-left: 2px solid var(--line);
}

.prose p { margin-bottom: 1.15em; }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  --btn-bg: var(--deep);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 13px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .015em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary { --btn-bg: var(--accent); --btn-fg: #fff; }
.btn-primary:hover { filter: brightness(1.06); }

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--deep);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; }

.btn-ghost {
  --btn-bg: rgba(255, 255, 255, .1);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .95); color: var(--deep); }

.btn-lg { padding: 16px 34px; font-size: .97rem; }
.btn-block { width: 100%; }

/* --- Header --------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding .3s var(--ease), background-color .3s var(--ease),
              box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(250, 248, 245, .94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 20px rgba(34, 38, 42, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  transition: color .3s var(--ease);
  min-width: 0;
}
.site-header.scrolled .brand { color: var(--ink); }

/* Initials monogram, used whenever no logo has been uploaded. */
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .9;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: .06em;
  line-height: 1;
  padding-left: .06em; /* optical centring for the letter-spacing */
}
.brand-logo { width: auto; max-height: 46px; }

.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: .002em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-role {
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .72;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.primary-nav { display: flex; align-items: center; gap: 10px; }
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 8px 0 0;
  padding: 0;
}
.primary-nav ul a {
  display: block;
  padding: 9px 13px;
  color: rgba(255, 255, 255, .92);
  font-size: .89rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.site-header.scrolled .primary-nav ul a { color: var(--body); }
.primary-nav ul a:hover { color: var(--accent); background: rgba(176, 137, 90, .09); }

.site-header:not(.scrolled) .nav-phone {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.site-header:not(.scrolled) .nav-phone:hover { color: #fff; border-color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
}
.site-header.scrolled .nav-toggle { color: var(--ink); border-color: var(--line); }

.nav-toggle-bars { display: block; width: 19px; }
.nav-toggle-bars span {
  display: block;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle-bars span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(92vh, 880px);
  padding: 160px 0 96px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 28, 32, .62) 0%, rgba(24, 28, 32, .34) 42%, rgba(24, 28, 32, .74) 100%),
    linear-gradient(92deg, rgba(24, 28, 32, .58) 0%, rgba(24, 28, 32, .12) 62%);
}

.hero-inner { position: relative; max-width: 780px; color: #fff; }

.hero-title {
  color: #fff;
  font-size: clamp(2.35rem, 1.2rem + 4.6vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -.022em;
  margin-bottom: .38em;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .28);
}

.hero-sub {
  font-size: clamp(1.03rem, .96rem + .38vw, 1.22rem);
  color: rgba(255, 255, 255, .93);
  max-width: 60ch;
  margin-bottom: 2.1rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .3);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2.4rem;
  font-size: .87rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

/* --- Highlights ----------------------------------------------------------- */

.highlights {
  background: var(--deep);
  color: rgba(255, 255, 255, .84);
  padding: 34px 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 26px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.highlight-grid li { display: flex; align-items: flex-start; gap: 12px; }
.highlight-grid .tick { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.highlight-grid strong {
  display: block;
  color: #fff;
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .005em;
}
.highlight-grid span { display: block; font-size: .87rem; line-height: 1.5; opacity: .74; }

/* --- About ---------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.about-portrait { position: relative; }
.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--tint);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: .4;
  z-index: -1;
}

.signature { margin-top: 22px; max-width: 210px; opacity: .85; }

.credential-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .78rem;
}
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .95rem;
  color: var(--ink);
}
.credential-list svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }

/* --- Services ------------------------------------------------------------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              border-color .28s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176, 137, 90, .35);
}

.service-thumb { aspect-ratio: 16 / 10; background: var(--tint); overflow: hidden; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .service-thumb img { transform: scale(1.04); }

.service-body { padding: 28px 28px 22px; flex: 1; }
.service-body h3 { font-size: 1.32rem; margin-bottom: .3rem; }

.service-price {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}

.service-text { font-size: .95rem; color: var(--body); margin: 0; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 28px 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--deep);
  font-size: .87rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.service-link svg { transition: transform .25s var(--ease); }
.service-card:hover .service-link { color: var(--accent); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* --- Process -------------------------------------------------------------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 34px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.process-step { position: relative; padding-top: 26px; border-top: 2px solid var(--line); }
.process-step h3 { font-size: 1.22rem; margin-bottom: .35rem; }
.process-step p { font-size: .94rem; margin: 0; }

.step-number {
  display: block;
  font-family: var(--serif);
  font-size: 1.06rem;
  color: var(--accent);
  letter-spacing: .1em;
  margin-bottom: .9rem;
}

/* --- Gallery -------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--tint);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(.9); }

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 26px 16px 13px;
  background: linear-gradient(180deg, transparent, rgba(24, 28, 32, .8));
  color: #fff;
  font-size: .85rem;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption { opacity: 1; transform: none; }

/* --- Testimonials --------------------------------------------------------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.quote-card {
  position: relative;
  margin: 0;
  padding: 40px 32px 30px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  position: absolute;
  top: 6px; left: 26px;
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: .26;
}

.quote-card blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-size: 1.13rem;
  line-height: 1.58;
  color: var(--ink);
}

.quote-card figcaption { border-top: 1px solid var(--line-soft); padding-top: 1rem; }
.quote-card figcaption strong {
  display: block;
  font-size: .93rem;
  color: var(--ink);
  font-weight: 600;
}
.quote-card figcaption span {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* --- CTA band ------------------------------------------------------------- */

.cta-band {
  position: relative;
  padding: clamp(62px, 7vw, 96px) 0;
  background: var(--deep);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.cta-media { position: absolute; inset: 0; z-index: -1; opacity: .26; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }

.cta-inner { max-width: 660px; }
.cta-inner h2 { color: #fff; font-size: clamp(1.65rem, 1.15rem + 1.7vw, 2.4rem); }
.cta-inner p { color: rgba(255, 255, 255, .84); margin-bottom: 2rem; }

/* --- FAQ ------------------------------------------------------------------ */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.faq-head { position: sticky; top: 118px; }
.faq-aside { font-size: .93rem; color: var(--muted); margin-top: 1.1rem; }
.faq-aside a { color: var(--accent); text-underline-offset: 3px; }

.faq-list { display: grid; gap: 2px; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.14rem;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item .chev { flex-shrink: 0; color: var(--accent); transition: transform .3s var(--ease); }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-answer { padding: 0 40px 22px 2px; font-size: .96rem; }
.faq-answer p { margin-bottom: .8em; }

/* --- Contact -------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-list svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact-list span {
  display: block;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-list a, .contact-list p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-list a:hover { color: var(--accent); }

.social-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 2.2rem; }
.social-link {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 40px;
  font-size: .84rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--body);
  transition: border-color .2s var(--ease), color .2s var(--ease), background-color .2s var(--ease);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(176, 137, 90, .07); }

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: var(--shadow-md);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .req { color: var(--accent); }
.field .opt { color: var(--muted); font-weight: 400; letter-spacing: 0; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: #fdfcfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .97rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.6; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m5 8 5 5 5-5' fill='none' stroke='%23857a6e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 137, 90, .16);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #c0553f;
  box-shadow: 0 0 0 3px rgba(192, 85, 63, .12);
}

.field-error { display: block; margin-top: 6px; font-size: .82rem; color: #c0553f; }

/* Honeypot — off-screen rather than display:none so bots still fill it. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-note { margin: 14px 0 0; font-size: .82rem; color: var(--muted); text-align: center; }

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: .92rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(74, 124, 89, .1); color: #2f5d3c; border: 1px solid rgba(74, 124, 89, .28); }
.form-status.is-error   { background: rgba(192, 85, 63, .09); color: #98402d; border: 1px solid rgba(192, 85, 63, .26); }

.btn-spinner {
  display: none;
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.is-sending .btn-spinner { display: block; }
.is-sending { pointer-events: none; opacity: .78; }

@keyframes spin { to { transform: rotate(360deg); } }

.contact-direct { text-align: center; padding: 20px 0; }
.contact-direct p { color: var(--body); margin-bottom: 1.4rem; }

/* --- Footer --------------------------------------------------------------- */

.site-footer { background: var(--deep); color: rgba(255, 255, 255, .68); padding: clamp(48px, 6vw, 76px) 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  padding-bottom: 46px;
}

.footer-name { font-family: var(--serif); font-size: 1.4rem; color: #fff; margin: 0 0 .2rem; }
.footer-role {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-blurb { font-size: .92rem; max-width: 42ch; margin: 0; }

.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-nav a { font-size: .92rem; text-decoration: none; transition: color .2s var(--ease); }
.footer-nav a:hover { color: var(--accent); }

.footer-contact { display: grid; gap: .5rem; align-content: start; }
.footer-contact > a { font-size: .92rem; text-decoration: none; overflow-wrap: anywhere; }
.footer-contact > a:hover { color: var(--accent); }
.footer-social { display: flex; flex-wrap: wrap; gap: 14px; margin-top: .7rem; }
.footer-social a { font-size: .82rem; text-decoration: none; opacity: .8; }
.footer-social a:hover { color: var(--accent); opacity: 1; }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .8rem;
}
.footer-base p { margin: 0; }
.footer-legal { opacity: .7; }
.footer-admin { margin-left: auto; opacity: .5; text-decoration: none; font-size: .78rem; }
.footer-admin:hover { opacity: 1; color: var(--accent); }

/* --- Lightbox ------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 5vh 6vw;
  background: rgba(18, 24, 21, .95);
  backdrop-filter: blur(4px);
  animation: fade .22s var(--ease);
}
.lightbox[hidden] { display: none; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.lightbox-figure { margin: 0; max-width: 100%; max-height: 90vh; text-align: center; }
.lightbox-figure img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-inline: auto;
}
.lightbox-figure figcaption {
  margin-top: 16px;
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, .22); transform: scale(1.06); }

.lightbox-close { top: 20px; right: 22px; width: 46px; height: 46px; font-size: 1.7rem; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }
.lightbox-nav[hidden] { display: none; }

body.no-scroll { overflow: hidden; }

/* --- Scroll reveal -------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --- Responsive ----------------------------------------------------------- */

@media (max-width: 1000px) {
  .about-grid,
  .faq-layout,
  .contact-grid { grid-template-columns: 1fr; }

  .about-portrait { max-width: 420px; }
  .about-portrait::after { inset: 16px -16px -16px 16px; }
  .faq-head { position: static; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 78px; }

  .nav-toggle { display: inline-flex; }

  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(330px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 96px 26px 34px;
    background: var(--ivory);
    box-shadow: -14px 0 50px rgba(24, 28, 32, .2);
    transform: translateX(100%);
    transition: transform .34s var(--ease);
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: none; }

  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 2px; margin: 0 0 18px; }
  .primary-nav ul a {
    color: var(--ink) !important;
    padding: 13px 12px;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }

  .nav-phone, .nav-cta { width: 100%; }
  .site-header:not(.scrolled) .nav-phone { color: var(--deep); border-color: var(--line); }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(24, 28, 32, .45);
    backdrop-filter: blur(2px);
    z-index: 99;
    animation: fade .25s var(--ease);
  }

  .hero { min-height: auto; padding: 132px 0 82px; }
  .hero-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }

  .field-row { grid-template-columns: 1fr; gap: 0; }

  .highlight-grid { gap: 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-base { justify-content: center; text-align: center; }
  .footer-admin { margin: 0; }

  .lightbox-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
  .lightbox { padding: 4vh 3vw; }
}

/* --- Print ---------------------------------------------------------------- */

@media print {
  .site-header, .nav-toggle, .lightbox, .cta-band, .contact-form-wrap, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .hero { min-height: auto; padding: 0 0 24px; }
  .hero-media { display: none; }
  .hero-title, .hero-sub, .hero-meta { color: #000; text-shadow: none; }
  .reveal { opacity: 1; transform: none; }
  .section { padding: 18px 0; break-inside: avoid; }
}

/* --- Reduced motion ------------------------------------------------------- */

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