/* ============================================================
   COBO PHOTOGRAPHY · design system
   Fonts: Fraunces (display) + Inter (body)
   Palette: ivory / warm ink / terracotta
   ============================================================ */

:root {
  --ivory: #faf6f0;
  --ivory-2: #f3ede3;
  --ink: #211d19;
  --ink-soft: #4f463d;
  --muted: #857a6d;
  --line: #e5dccd;
  --accent: #b4562b;
  --accent-dark: #93431f;
  --white: #fffdf9;
  --dark: #191612;
  --dark-2: #221e19;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-h: 76px;
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(33, 29, 25, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 52px); margin: 18px 0 16px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker::before { display: none; }

/* ---------- layout ---------- */

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 6vw; }
section { padding: 110px 0; }
section.tight { padding: 70px 0; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 60px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--accent); transform: translateY(-2px); }

.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-ghost { border-color: rgba(255, 253, 249, 0.55); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--ink); }

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

.btn svg { width: 15px; height: 15px; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.35s ease;
  white-space: nowrap;
}

.brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.92);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.nav-links a:hover { color: var(--accent); }

.nav-links a.active { color: var(--accent); }

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

.nav-cta a {
  border: 1px solid rgba(255, 253, 249, 0.5);
  border-radius: 60px;
  padding: 10px 22px;
  white-space: nowrap;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(15, 12, 9, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.nav-cta a:hover { background: var(--accent); border-color: var(--accent); }

.nav.solid .nav-cta a, .nav.always-solid .nav-cta a { background: transparent; color: var(--ink); }
.nav.solid .nav-cta a:hover, .nav.always-solid .nav-cta a:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* dropdown */
.has-drop > a svg { width: 11px; height: 11px; transition: transform 0.3s ease; }
.has-drop:hover > a svg { transform: rotate(180deg); }

.drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 8px;
  min-width: 250px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  list-style: none;
}

.has-drop:hover .drop, .has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.drop .drop-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 18px 4px;
}

.drop a {
  color: var(--ink) !important;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14.5px;
  padding: 8px 18px;
  border-radius: 8px;
  display: block;
}

.drop a:hover { background: var(--ivory-2); color: var(--accent) !important; }

/* solid nav state */
.nav.solid, .nav.always-solid { background: rgba(250, 246, 240, 0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav.solid .brand, .nav.always-solid .brand { color: var(--ink); }
.nav.solid .nav-links > li > a, .nav.always-solid .nav-links > li > a { color: var(--ink); }
.nav.solid .nav-links > li > a:hover, .nav.solid .nav-links > li > a.active,
.nav.always-solid .nav-links > li > a:hover, .nav.always-solid .nav-links > li > a.active { color: var(--accent); }
.nav.solid .nav-cta a, .nav.always-solid .nav-cta a { border-color: var(--ink); }
.nav.solid .burger span, .nav.always-solid .burger span { background: var(--ink); }

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 130;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.35s var(--ease);
}

body.menu-open .burger span { background: var(--white) !important; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 9vw 60px;
  clip-path: circle(0% at calc(100% - 44px) 38px);
  transition: clip-path 0.65s var(--ease);
  overflow-y: auto;
}

body.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 44px) 38px); }

.mobile-menu ul { list-style: none; display: grid; gap: 4px; }

.mobile-menu .m-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 22px 0 8px;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(22px, 5.4vw, 30px);
  color: var(--ivory);
  display: inline-block;
  padding: 3px 0;
}

.mobile-menu a:active { color: var(--accent); }

.mobile-menu .m-contact { margin-top: 34px; color: var(--muted); font-size: 14px; line-height: 2; }
.mobile-menu .m-contact a { font-family: var(--sans); font-size: 15px; color: var(--ivory); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding: 0;
}

.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 9, 0.78) 0%, rgba(15, 12, 9, 0.25) 45%, rgba(15, 12, 9, 0.35) 100%);
}

.hero .wrap { position: relative; z-index: 2; padding-bottom: 9vh; padding-top: 22vh; width: 100%; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.85);
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(46px, 8.4vw, 104px);
  max-width: 11ch;
  margin-bottom: 26px;
}

.hero h1 em { font-style: italic; color: #e8b48f; }

.hero p.lede {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 44ch;
  color: rgba(255, 253, 249, 0.88);
  margin-bottom: 40px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-trust {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 253, 249, 0.22);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  font-size: 14px;
  color: rgba(255, 253, 249, 0.85);
}

.stars { color: #f0b429; letter-spacing: 3px; font-size: 15px; }

/* page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding: 0;
}

.page-hero .wrap { position: relative; z-index: 2; padding-bottom: 64px; padding-top: 25vh; width: 100%; }
.page-hero h1 { font-size: clamp(38px, 6vw, 72px); max-width: 16ch; margin: 16px 0 18px; }
.page-hero p { max-width: 52ch; font-size: 17px; color: rgba(255, 253, 249, 0.88); }
.page-hero .kicker { color: #e8b48f; }
.page-hero .kicker::before { background: #e8b48f; }

/* ---------- service cards ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 22px;
}

.svc-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 3.9;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}

.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  z-index: -2;
}

.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 9, 0.82), rgba(15, 12, 9, 0.05) 55%);
  z-index: -1;
  transition: background 0.4s ease;
}

.svc-card:hover img { transform: scale(1.06); }

.svc-body { padding: 28px; width: 100%; }

.svc-body .svc-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8b48f;
}

.svc-body h3 { font-size: 26px; margin: 8px 0 6px; }
.svc-body p { font-size: 14px; color: rgba(255, 253, 249, 0.82); margin-bottom: 14px; }

.svc-links { display: flex; flex-wrap: wrap; gap: 6px; }

.svc-links span {
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 253, 249, 0.35);
  border-radius: 40px;
  color: rgba(255, 253, 249, 0.9);
}

.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.svc-arrow svg { width: 15px; height: 15px; transition: transform 0.3s ease; }
.svc-card:hover .svc-arrow svg { transform: translateX(5px); }

/* ---------- experience strip ---------- */

.exp { background: var(--dark); color: var(--ivory); }
.exp .section-head h2 { color: var(--white); }
.exp .section-head p { color: rgba(250, 246, 240, 0.72); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px 34px;
}

.exp-item { border-top: 1px solid rgba(250, 246, 240, 0.18); padding-top: 24px; }

.exp-item .num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.exp-item h3 { font-size: 21px; margin-bottom: 10px; color: var(--white); }
.exp-item p { font-size: 14.5px; color: rgba(250, 246, 240, 0.7); }

/* ---------- masonry gallery ---------- */

.masonry { columns: 3 300px; column-gap: 18px; }

.masonry a {
  display: block;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  break-inside: avoid;
  position: relative;
}

.masonry img {
  width: 100%;
  transition: transform 0.7s var(--ease), filter 0.7s ease;
}

.masonry a:hover img { transform: scale(1.045); }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.about-media { position: relative; }

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  z-index: -1;
}

.about-copy h2 { font-size: clamp(32px, 4vw, 48px); margin: 18px 0 22px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 56ch; }

.about-stats {
  display: flex;
  gap: 44px;
  margin: 30px 0 34px;
  flex-wrap: wrap;
}

.about-stats .stat b {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  display: block;
  color: var(--ink);
}

.about-stats .stat span { font-size: 13px; color: var(--muted); }

/* ---------- reviews ---------- */

.reviews { background: var(--ivory-2); }

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(380px, 82vw);
  gap: 20px;
  overflow-x: auto;
  padding: 6px 6px 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card p { font-size: 15px; color: var(--ink-soft); flex: 1; }

.review-who { display: flex; align-items: center; gap: 14px; }

.review-who .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--ivory);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 17px;
}

.review-who b { display: block; font-size: 14.5px; }
.review-who span { font-size: 12.5px; color: var(--muted); }

/* ---------- pricing ---------- */

.price-group { margin-bottom: 72px; }
.price-group > h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 14px 0 30px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.price-card.featured { background: var(--dark); color: var(--ivory); border-color: var(--dark); }
.price-card.featured .price-amount { color: var(--white); }
.price-card.featured li { color: rgba(250, 246, 240, 0.78); border-color: rgba(250, 246, 240, 0.14); }

.price-card .flag {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
}

.price-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-title { font-family: var(--serif); font-size: 24px; margin: 10px 0 4px; }
.price-note { font-size: 13px; color: var(--muted); }

.price-amount {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  margin: 18px 0 6px;
  color: var(--ink);
}

.price-amount small { font-size: 15px; font-family: var(--sans); font-weight: 500; color: var(--muted); }

.price-card ul { list-style: none; margin: 18px 0 28px; flex: 1; }

.price-card li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.price-card li:last-child { border-bottom: 0; }

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.extras {
  background: var(--ivory-2);
  border-radius: var(--radius);
  padding: 44px;
}

.extras h3 { font-size: 26px; margin-bottom: 20px; }

.extras ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px 34px; }

.extras li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}

.extras li b { color: var(--ink); white-space: nowrap; }

/* ---------- faq ---------- */

.faq-cat { margin-bottom: 54px; }
.faq-cat h2 { font-size: clamp(26px, 3vw, 36px); margin: 12px 0 22px; }

details.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 58px 20px 24px;
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

details.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

details.faq-item .faq-a { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.contact-info h2 { font-size: clamp(30px, 4vw, 44px); margin: 16px 0 18px; }
.contact-info > p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 30px; }

.contact-rows { display: grid; gap: 6px; margin-bottom: 30px; }

.contact-rows a, .contact-rows .row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-rows a:hover { color: var(--accent); }

.contact-rows svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

.areas { font-size: 13.5px; color: var(--muted); line-height: 1.9; }
.areas b { color: var(--ink-soft); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 26px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.field textarea { resize: vertical; min-height: 120px; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 86, 43, 0.14);
}

.form-card .btn { width: 100%; justify-content: center; margin-top: 22px; }

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

.cta-band {
  position: relative;
  color: var(--white);
  text-align: center;
  isolation: isolate;
  padding: 130px 0;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 10, 0.68);
  z-index: -1;
}

.cta-band h2 { font-size: clamp(32px, 5vw, 58px); max-width: 20ch; margin: 0 auto 18px; }
.cta-band p { max-width: 50ch; margin: 0 auto 36px; color: rgba(255, 253, 249, 0.85); }

/* ---------- footer ---------- */

footer { background: var(--dark); color: rgba(250, 246, 240, 0.75); padding: 90px 0 36px; }

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 246, 240, 0.12);
}

.foot-brand .brand { color: var(--ivory); font-size: 24px; }
.foot-brand p { font-size: 14px; margin-top: 16px; max-width: 34ch; line-height: 1.8; }

.foot-social { display: flex; gap: 12px; margin-top: 22px; }

.foot-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 246, 240, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.foot-social a:hover { background: var(--accent); border-color: var(--accent); }
.foot-social svg { width: 16px; height: 16px; color: var(--ivory); }

.foot-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 20px;
}

.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { font-size: 14.5px; transition: color 0.3s ease; }
.foot-col a:hover { color: var(--accent); }

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 30px;
  font-size: 13px;
  color: rgba(250, 246, 240, 0.45);
}

.foot-bottom a:hover { color: var(--accent); }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 9, 0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lb-btn {
  position: absolute;
  background: rgba(255, 253, 249, 0.08);
  border: 1px solid rgba(255, 253, 249, 0.25);
  color: var(--ivory);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s ease;
}

.lb-btn:hover { background: var(--accent); border-color: var(--accent); }

.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

/* ---------- terms ---------- */

.prose { max-width: 760px; }
.prose h2 { font-size: 26px; margin: 38px 0 14px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.prose ul { padding-left: 22px; }

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 84px 0; }
}

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .masonry { columns: 2 150px; column-gap: 12px; }
  .masonry a { margin-bottom: 12px; }
  .hero .wrap { padding-bottom: 12vh; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .svc-card img, .masonry img { transition: none; }
}
