/* ============================================================
   SK Construction + Design — site stylesheet
   One responsive stylesheet shared by every page.
   Palette, type, and components are defined once here.
   ============================================================ */

:root {
  --ink:    #1C1C1C;   /* near-black brand color */
  --cream:  #F9F7F4;   /* page background */
  --gold:   #B8965A;   /* accent */
  --sand:   #F1ECE4;   /* alt section background */
  --muted:  #6B6B6B;   /* body text on light */
  --muted2: #9a8f7d;   /* fine print */
  --line:   #E7E0D6;   /* hairline border */
  --line2:  #E1D9CC;   /* hairline border (warmer) */
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'DM Sans', system-ui, -apple-system, sans-serif;
  --wrap:   1280px;    /* max content width */
  --gutter: clamp(18px, 5vw, 56px);
}

/* ---------- Resets ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::placeholder { color: #A89F90; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; width: 100%; }
.section { padding: clamp(64px, 9vw, 120px) var(--gutter); }
.section--tight { padding: clamp(48px, 6vw, 80px) var(--gutter); }
.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--sand); }
.bg-ink   { background: var(--ink); color: var(--cream); }
.bg-gold  { background: var(--gold); }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; white-space: nowrap;
  color: var(--gold); margin-bottom: 18px;
}
.serif { font-family: var(--serif); }
.italic-gold { font-style: italic; color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; border-radius: 2px;
  cursor: pointer; transition: all .25s ease; line-height: 1;
}
.btn--sm { padding: 13px 24px; font-size: 12.5px; }
.btn--lg { padding: 18px 32px; }
.btn--block { width: 100%; }

.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* gold button sitting on a dark/gold field — inverts to cream */
.btn--gold-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn--dark { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--dark:hover { background: var(--cream); color: var(--ink); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--outline-light { background: transparent; color: var(--cream); border-color: rgba(249,247,244,0.5); }
.btn--outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ---------- Top utility bar ---------- */
.utility { background: var(--ink); color: var(--cream); }
.utility__inner {
  max-width: var(--wrap); margin: 0 auto; width: 100%;
  padding: 9px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.utility__tag {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(249,247,244,0.62); font-weight: 500; white-space: nowrap;
}
.utility__phone {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  color: var(--cream); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; transition: color .2s ease;
}
.utility__phone:hover { color: var(--gold); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream); border-bottom: 1px solid transparent; padding: 20px 0;
  transition: padding .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 10px 34px rgba(28,28,28,0.10);
  border-bottom-color: var(--line);
  padding-top: 13px; padding-bottom: 13px;
}
.site-header__inner {
  max-width: var(--wrap); margin: 0 auto; width: 100%; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; flex-shrink: 0; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--ink); letter-spacing: -0.01em; }
.brand__tag  { font-size: 8.5px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); }
.nav__link {
  text-decoration: none; color: var(--ink); font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.05em; padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav__link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav__link--active { color: var(--gold); font-weight: 600; border-bottom-color: var(--gold); }

/* Hamburger (mobile only) */
.nav-toggle {
  background: none; border: none; cursor: pointer; padding: 8px;
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; align-items: center; justify-content: center;
}
.nav-toggle .line {
  display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .line:nth-child(2) { opacity: 0; }
.nav-toggle.open .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  gap: 18px; padding: 32px clamp(28px, 8vw, 64px);
  transform: translateX(100%); opacity: 0; pointer-events: none;
  transition: transform .45s cubic-bezier(.16,.84,.44,1), opacity .45s ease;
}
.mobile-menu.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { text-decoration: none; color: var(--ink); font-family: var(--serif); font-size: 34px; font-weight: 600; }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu__cta { margin-top: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 18px 28px; background: var(--gold); color: var(--ink); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; border-radius: 2px; font-family: var(--sans); }
.mobile-menu__call { margin-top: 6px; text-decoration: none; color: var(--muted); font-size: 14px; letter-spacing: 0.04em; font-family: var(--sans); }

/* Breakpoint: swap desktop nav for hamburger. Works with no JS. */
@media (max-width: 879px) {
  .utility__tag { display: none; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Inner-page header band ---------- */
.page-head { position: relative; background: var(--ink); overflow: hidden;
  padding: clamp(56px,8vw,104px) var(--gutter) clamp(56px,8vw,100px); }
.page-head__ghost { position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  font-family: var(--serif); font-weight: 900; font-size: clamp(14rem,30vw,30rem);
  color: rgba(249,247,244,0.04); line-height: 0; pointer-events: none; user-select: none; }
.page-head__inner { position: relative; max-width: var(--wrap); margin: 0 auto; }
.crumb { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(249,247,244,0.5); margin-bottom: 26px; }
.crumb a { text-decoration: none; color: rgba(249,247,244,0.5); transition: color .2s ease; }
.crumb a:hover { color: var(--gold); }
.crumb .sep { color: var(--gold); }
.crumb .here { color: var(--cream); }
.page-head h1 { margin: 0; max-width: 18ch; font-family: var(--serif); font-weight: 700; color: var(--cream);
  font-size: clamp(2.8rem,7vw,5.4rem); line-height: 1; letter-spacing: -0.02em; }
.page-head p { margin: 24px 0 0; max-width: 54ch; color: rgba(249,247,244,0.82);
  font-size: clamp(1rem,1.5vw,1.2rem); line-height: 1.65; }

/* ---------- Generic section heading ---------- */
.head { max-width: 680px; margin-bottom: clamp(40px,5vw,64px); }
.head h2 { margin: 0; font-family: var(--serif); font-weight: 700; color: var(--ink);
  font-size: clamp(2rem,5vw,3.4rem); line-height: 1.05; letter-spacing: -0.02em; }
.head p { margin: 20px 0 0; color: var(--muted); font-size: clamp(1rem,1.3vw,1.12rem); line-height: 1.65; max-width: 54ch; }

/* ---------- Service cards (home) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,340px), 1fr));
  gap: clamp(14px,1.6vw,22px); max-width: 1160px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 2px;
  padding: clamp(26px,2.4vw,36px); display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.16,.84,.44,1), box-shadow .35s ease, border-color .35s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(28,28,28,0.10); border-color: var(--gold); }
.card__icon { width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px; background: var(--cream); }
.card h3 { margin: 0 0 8px; font-family: var(--serif); font-weight: 600; font-size: 1.45rem; color: var(--ink); }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; }
.card__foot { margin-top: 22px; display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--line); }
.card__price { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #454545; font-weight: 600; }
.card__arrow { color: var(--gold); font-size: 18px; }

/* ---------- Marquee divider ---------- */
.marquee { background: var(--ink); border-top: 1px solid rgba(184,150,90,0.25);
  border-bottom: 1px solid rgba(184,150,90,0.25); overflow: hidden; padding: 15px 0; }
.marquee__track { display: flex; width: max-content; animation: skMarquee 32s linear infinite; white-space: nowrap; }
.marquee__group { display: inline-flex; align-items: center; font-family: var(--serif);
  font-style: italic; font-size: 18px; color: rgba(249,247,244,0.78); }
.marquee__group .slash { color: var(--gold); margin: 0 26px; }
@keyframes skMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Trust bar ---------- */
.trust { max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,230px),1fr)); gap: clamp(28px,3vw,48px); }
.trust__item { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.trust__title { color: var(--cream); font-weight: 600; font-size: 14px; letter-spacing: 0.13em; text-transform: uppercase; }
.trust__sub { color: rgba(249,247,244,0.55); font-size: 13px; margin-top: 6px; line-height: 1.5; }

/* ---------- Work / gallery media tiles ---------- */
.media { position: relative; overflow: hidden; background: #E7DFD2; border: 1px solid var(--line2); border-radius: 2px; }
.media__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.16,.84,.44,1); }
.media:hover .media__img { transform: scale(1.06); }
/* Placeholder shown until a real <img class="media__img"> is dropped in */
.media__ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px; color: var(--muted2); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; background-image:
    repeating-linear-gradient(45deg, rgba(184,150,90,0.06) 0 10px, transparent 10px 20px); }
.media__cap { position: absolute; left: 0; right: 0; bottom: 0; background: var(--ink);
  padding: 13px 16px; display: flex; align-items: center; gap: 9px; pointer-events: none; }
.media__cap .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.media__cap span { color: var(--cream); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,340px),1fr)); gap: clamp(12px,1.4vw,18px); }
.work-grid .media { aspect-ratio: 4/3; }

/* Gallery masonry */
.masonry { column-width: 300px; column-gap: clamp(12px,1.4vw,18px); }
.masonry .media { break-inside: avoid; margin-bottom: clamp(12px,1.4vw,18px); }

/* ---------- CTA band ---------- */
.cta { max-width: 920px; margin: 0 auto; text-align: center; }
.cta h2 { margin: 0; font-family: var(--serif); font-weight: 700; color: var(--ink);
  font-size: clamp(2.1rem,5.5vw,3.7rem); line-height: 1.04; letter-spacing: -0.02em; }
.cta p { margin: 18px auto 0; max-width: 48ch; color: #3a3120; font-size: clamp(1rem,1.4vw,1.18rem); line-height: 1.6; }
.cta__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: clamp(56px,7vw,96px) var(--gutter) 0; }
.footer__top { max-width: var(--wrap); margin: 0 auto; display: flex; flex-wrap: wrap;
  gap: clamp(36px,5vw,72px); padding-bottom: clamp(48px,6vw,72px); }
.footer__brand { flex: 2 1 300px; min-width: 260px; }
.footer__brand p { margin: 0; max-width: 38ch; color: rgba(249,247,244,0.6); font-size: 14.5px; line-height: 1.7; }
.footer__social { display: flex; gap: 12px; margin-top: 26px; }
.footer__social a { width: 42px; height: 42px; border: 1px solid rgba(249,247,244,0.22); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; transition: all .25s ease; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); }
.footer__col { flex: 1 1 150px; min-width: 140px; }
.footer__col--contact { flex: 1 1 200px; min-width: 190px; }
.footer__h { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 13px; }
.footer__links a { text-decoration: none; color: rgba(249,247,244,0.78); font-size: 14.5px; transition: color .2s ease; }
.footer__links a:hover { color: var(--gold); }
.footer__phone { text-decoration: none; color: var(--cream); font-family: var(--serif); font-size: 22px; font-weight: 600; transition: color .2s ease; }
.footer__phone:hover { color: var(--gold); }
.footer__email { text-decoration: none; color: rgba(249,247,244,0.78); font-size: 14.5px; transition: color .2s ease; }
.footer__email:hover { color: var(--gold); }
.footer__note { color: rgba(249,247,244,0.55); font-size: 13.5px; line-height: 1.6; margin-top: 4px; }
.footer__bar { max-width: var(--wrap); margin: 0 auto; border-top: 1px solid rgba(249,247,244,0.14);
  padding: 24px 0 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.footer__bar span { font-size: 12.5px; color: rgba(249,247,244,0.45); letter-spacing: 0.03em; }
.footer__bar .upper { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ============================================================
   PAGE-SPECIFIC
   ============================================================ */

/* ---------- Home hero (Statement) ---------- */
.hero { position: relative; background: var(--ink); overflow: hidden;
  padding: clamp(64px,9vw,128px) var(--gutter) clamp(48px,6vw,88px); }
.hero__letter { position: absolute; top: 45%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--serif); font-weight: 900; font-size: clamp(17rem,40vw,34rem);
  color: var(--cream); opacity: 0; line-height: 1; pointer-events: none; user-select: none;
  will-change: transform, opacity; }
.hero__inner { position: relative; max-width: 1080px; margin: 0 auto; text-align: center; }
.hero h1 { margin: 0; font-family: var(--serif); font-weight: 700; color: var(--cream);
  font-size: clamp(2.9rem,8vw,6.4rem); line-height: 1; letter-spacing: -0.02em; }
.hero__sub { margin: 28px auto 0; max-width: 52ch; color: rgba(249,247,244,0.82);
  font-size: clamp(1rem,1.5vw,1.2rem); line-height: 1.65; }
.hero__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.hero__media { position: relative; margin-top: clamp(40px,5vw,72px); min-height: clamp(220px,30vw,360px);
  border: 1px solid rgba(184,150,90,0.4); border-radius: 2px; overflow: hidden; }

/* ---------- Services detail rows ---------- */
.svc-row { max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,330px),1fr)); gap: clamp(32px,5vw,72px); align-items: start; }
.svc-row__head { position: sticky; top: 108px; }
.svc-num-icon { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; }
.svc-num { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); font-weight: 600; }
.svc-icon { width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; background: #fff; }
.svc-row__head h2 { margin: 0; font-family: var(--serif); font-weight: 700; color: var(--ink);
  font-size: clamp(1.9rem,3.4vw,2.7rem); line-height: 1.08; letter-spacing: -0.01em; }
.svc-row__head p { margin: 16px 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.65; max-width: 44ch; }
.price-list { background: #fff; border: 1px solid var(--line); border-radius: 2px; padding: clamp(22px,3vw,38px); }
.price-list .row { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid #EFEAE2; }
.price-list .row:last-child { border-bottom: none; }
.price-list .name { font-weight: 500; color: var(--ink); font-size: 1.02rem; }
.price-list .amt { font-weight: 600; color: var(--ink); letter-spacing: 0.02em; white-space: nowrap; }
.price-list .amt--quote { color: var(--gold); font-style: italic; }
.svc-callout { margin-top: 24px; background: var(--ink); border: 1px solid var(--gold); border-radius: 2px; padding: 24px 26px; max-width: 420px; }
.svc-callout__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.svc-callout__price { display: flex; align-items: baseline; gap: 12px; }
.svc-callout__price b { font-family: var(--serif); font-weight: 700; font-size: 2.6rem; color: var(--cream); line-height: 1; }
.svc-callout__price span { color: rgba(249,247,244,0.7); font-size: 14px; line-height: 1.5; }
.link-btn { margin-top: 26px; }

/* ---------- About ---------- */
.about-grid { max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,340px),1fr)); gap: clamp(36px,5vw,72px); align-items: start; }
.about-photo { position: relative; }
.about-photo__frame { position: absolute; left: -14px; top: -14px; width: 64%; height: 64%;
  border: 1px solid var(--gold); border-radius: 2px; pointer-events: none; }
.about-photo .media { position: relative; display: block; width: 100%; aspect-ratio: 4/5; }
.about-body h2 { margin: 0; font-family: var(--serif); font-weight: 700; color: var(--ink);
  font-size: clamp(1.9rem,4vw,3rem); line-height: 1.06; letter-spacing: -0.02em; }
.about-body p { margin: 22px 0 0; color: #454545; font-size: 1.06rem; line-height: 1.75; }
.about-body p + p { margin-top: 18px; }
.about-badge { margin-top: 30px; display: flex; align-items: flex-start; gap: 18px; background: var(--ink); border-radius: 2px; padding: 24px 26px; }
.about-badge__title { color: var(--cream); font-weight: 600; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; }
.about-badge__sub { color: rgba(249,247,244,0.7); font-size: 14px; line-height: 1.6; margin-top: 6px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,320px),1fr)); gap: clamp(16px,2vw,28px); }
.why-item { display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid var(--line2); border-radius: 2px; padding: 24px 26px; }
.why-item h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); font-weight: 600; margin: 0; }
.why-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 4px 0 0; }
.area-block { max-width: 760px; margin: 0 auto; text-align: center; }
.area-block h2 { margin: 0; font-family: var(--serif); font-weight: 700; color: var(--cream);
  font-size: clamp(1.8rem,4vw,2.8rem); line-height: 1.1; letter-spacing: -0.01em; }
.area-block p { margin: 20px auto 0; max-width: 50ch; color: rgba(249,247,244,0.75); font-size: 1.08rem; line-height: 1.7; }
.area-icon { display: inline-flex; width: 58px; height: 58px; border: 1px solid rgba(184,150,90,0.45);
  border-radius: 2px; align-items: center; justify-content: center; margin-bottom: 24px; }

/* ---------- Contact ---------- */
.contact-grid { max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,320px),1fr)); gap: clamp(36px,5vw,72px); align-items: start; }
.contact-label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.contact-phone { display: inline-block; text-decoration: none; color: var(--ink); font-family: var(--serif);
  font-weight: 700; font-size: clamp(2.2rem,5vw,3.2rem); line-height: 1; letter-spacing: -0.01em; transition: color .2s ease; }
.contact-phone:hover { color: var(--gold); }
.contact-rule { height: 1px; background: #E4DDD2; margin: 30px 0; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info__item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info__k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted2); font-weight: 600; margin-bottom: 4px; }
.contact-info__v { color: var(--ink); font-size: 1.02rem; text-decoration: none; transition: color .2s ease; }
a.contact-info__v:hover { color: var(--gold); }
.contact-respond { margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; background: var(--ink); border-radius: 2px; padding: 14px 20px; }
.contact-respond .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.contact-respond span { color: var(--cream); font-size: 13px; letter-spacing: 0.04em; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 2px; padding: clamp(26px,3.5vw,44px); }
.form-card h2 { margin: 0 0 6px; font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: clamp(1.5rem,2.6vw,2rem); line-height: 1.1; }
.form-card__intro { margin: 0 0 28px; color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
.field-stack { display: flex; flex-direction: column; gap: 20px; }
.field-2col { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,200px),1fr)); gap: 20px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #454545; font-weight: 600; margin-bottom: 8px; }
.field label .req { color: var(--gold); }
.field label .opt { color: var(--muted2); font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-size: 16px; color: var(--ink); background: var(--cream);
  border: 1px solid #DCD4C8; border-radius: 2px; transition: border-color .2s ease, background .2s ease; }
.field textarea { resize: vertical; line-height: 1.6; }
.field select { cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.file-drop { display: flex; align-items: center; gap: 14px; padding: 18px 16px; border: 1px dashed #C9BFB0;
  border-radius: 2px; cursor: pointer; background: #FBFAF7; transition: border-color .2s ease, background .2s ease; }
.file-drop:hover { border-color: var(--gold); background: #fff; }
.file-drop span { color: var(--muted); font-size: 0.96rem; }
.form-fine { margin: 2px 0 0; text-align: center; color: var(--muted2); font-size: 12.5px; line-height: 1.5; }
.form-success { text-align: center; padding: clamp(20px,4vw,48px) 0; animation: skPop .5s cubic-bezier(.16,.84,.44,1) both; }
.form-success__check { display: inline-flex; width: 72px; height: 72px; border: 1px solid var(--gold);
  border-radius: 50%; align-items: center; justify-content: center; margin-bottom: 24px; }
.form-success h2 { margin: 0; font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: clamp(1.7rem,3vw,2.3rem); line-height: 1.1; }
.form-success p { margin: 16px auto 0; max-width: 38ch; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.form-success__row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
@keyframes skPop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.gallery-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  margin-bottom: clamp(28px,3.5vw,44px); padding-bottom: 24px; border-bottom: 1px solid #E4DDD2; }
.gallery-toolbar__note { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; letter-spacing: 0.04em; }
.gallery-toolbar__note .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.feed-note { margin-top: clamp(28px,3.5vw,44px); text-align: center; font-size: 12.5px; letter-spacing: 0.06em; color: var(--muted2); }
.feed-note a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ---------- Scroll-reveal (progressive enhancement) ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); will-change: opacity, transform;
  transition: opacity .9s cubic-bezier(.16,.84,.44,1), transform .9s cubic-bezier(.16,.84,.44,1); }
[data-reveal="left"]  { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal].revealed { opacity: 1; transform: none; }
/* If JS never runs or motion is reduced, show everything. */
.no-js [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
