/* =====================================================
   AMBIENT PORTRAITURE — public stylesheet
   Palette: warm darkroom
   ink #12100D · surface #1B1813 · line #2D2820
   ivory #EFE9DE · muted #A79C8B · brass #C09A5B
   Type: Cormorant Garamond (display) / Jost (body)
   ===================================================== */

:root {
  --ink: #12100d;
  --surface: #1b1813;
  --surface-2: #221e17;
  --line: #2d2820;
  --ivory: #efe9de;
  --muted: #a79c8b;
  --brass: #c09a5b;
  --brass-soft: rgba(192, 154, 91, 0.14);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Jost", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brass); color: var(--ink); padding: 10px 18px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

::selection { background: var(--brass); color: var(--ink); }

h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h1 em, h2 em { font-style: italic; color: var(--brass); }

.eyebrow {
  font-family: var(--body); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--brass);
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--brass); }

.lede { color: var(--muted); max-width: 58ch; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 16, 13, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  font-family: var(--display); font-size: 1.55rem; color: var(--brass);
  width: 44px; height: 44px; border: 1px solid var(--brass);
  border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, var(--brass-soft), transparent 70%);
}
.brand-text { font-family: var(--display); font-size: 1.02rem; line-height: 1.1; letter-spacing: 0.04em; text-transform: uppercase; }
.brand-text em { font-style: italic; text-transform: none; color: var(--brass); letter-spacing: 0.02em; }
.brand-text.big { font-size: 1.6rem; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.site-nav a:hover, .site-nav a.active { color: var(--ivory); }
.site-nav a.active { border-bottom: 1px solid var(--brass); padding-bottom: 3px; }

.btn {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius); transition: all .2s; cursor: pointer;
  font-family: var(--body); font-weight: 400;
}
.btn-solid { background: var(--brass); color: var(--ink); border: 1px solid var(--brass); }
.btn-solid:hover { background: transparent; color: var(--brass); }
.btn-outline { border: 1px solid var(--brass); color: var(--brass) !important; }
.btn-outline:hover { background: var(--brass); color: var(--ink) !important; }
.site-nav .nav-cta { padding: 10px 20px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--ivory); margin: 7px 0; transition: transform .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(90px, 14vh, 160px) 0 clamp(70px, 10vh, 120px);
  text-align: left;
}
.hero::before {
  /* the signature: a slow ambient glow, like a candle behind gauze */
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 72% 30%, rgba(192,154,91,0.16), transparent 65%),
    radial-gradient(ellipse 40% 35% at 18% 85%, rgba(192,154,91,0.07), transparent 70%);
  animation: glow 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glow {
  from { opacity: .7; transform: translateY(0); }
  to   { opacity: 1;  transform: translateY(-2.5%); }
}
/* Editable hero photograph — low opacity, blended into the darkroom tone */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
  opacity: 0.28;
  filter: saturate(0.75) contrast(1.02);
  pointer-events: none;
}
.hero.has-image::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(18,16,13,0.55), rgba(18,16,13,0.25) 45%, var(--ink) 98%),
    linear-gradient(to right, rgba(18,16,13,0.75), rgba(18,16,13,0.1) 70%);
}
.hero.has-image .wrap { z-index: 2; }
.hero.has-image::before { z-index: 1; }

.brand-logo { height: 34px; width: auto; display: block; }
.hero .wrap { position: relative; }
.hero h1 { max-width: 14ch; margin-bottom: 22px; }
.hero .lede { margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 64px; display: flex; gap: 34px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-meta span::before { content: "— "; color: var(--brass); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; border-top: 1px solid var(--line); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head .lede { margin-top: 12px; }

/* ---------- Album grid ---------- */
.album-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.album-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, border-color .25s; display: block;
}
.album-card:hover { transform: translateY(-4px); border-color: var(--brass); }
.album-cover { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); position: relative; }
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.album-card:hover .album-cover img { transform: scale(1.045); }
.album-cover .no-img { display: grid; place-items: center; height: 100%; color: var(--muted); font-family: var(--display); font-style: italic; }
.album-body { padding: 20px 22px 22px; }
.album-cat { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); }
.album-body h3 { margin: 8px 0 6px; }
.album-meta { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 0.85rem; margin-top: 10px; }

.stars .star { color: #4a4234; font-size: 1rem; }
.stars .star.filled { color: var(--brass); }
.rating-count { color: var(--muted); font-size: 0.8rem; margin-left: 6px; }

/* Category filter */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }
.filter-bar a {
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 30px; color: var(--muted); transition: all .2s;
}
.filter-bar a:hover { border-color: var(--brass); color: var(--ivory); }
.filter-bar a.on { background: var(--brass); border-color: var(--brass); color: var(--ink); }

/* ---------- Album detail / lightbox ---------- */
.masonry { columns: 3 300px; column-gap: 20px; }
.masonry figure { break-inside: avoid; margin-bottom: 20px; position: relative; cursor: zoom-in; border: 1px solid var(--line); background: var(--surface); }
.masonry img { width: 100%; }
.masonry figcaption {
  padding: 10px 14px; font-size: 0.82rem; color: var(--muted);
  font-family: var(--display); font-style: italic; font-size: 0.95rem;
}

.lightbox {
  position: fixed; inset: 0; background: rgba(10, 9, 7, 0.96); z-index: 90;
  display: none; align-items: center; justify-content: center; flex-direction: column; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; object-fit: contain; border: 1px solid var(--line); }
.lightbox .lb-caption { color: var(--muted); margin-top: 16px; font-family: var(--display); font-style: italic; font-size: 1.05rem; }
.lb-btn {
  position: absolute; background: none; border: 1px solid var(--line); color: var(--ivory);
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: all .2s;
}
.lb-btn:hover { border-color: var(--brass); color: var(--brass); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* Rating widget */
.rate-box {
  margin: 40px auto 0; max-width: 460px; text-align: center;
  border: 1px solid var(--line); background: var(--surface); padding: 30px 26px; border-radius: var(--radius);
}
.rate-box h3 { margin-bottom: 6px; }
.rate-box p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
.rate-stars { display: inline-flex; gap: 6px; font-size: 1.9rem; cursor: pointer; }
.rate-stars .rs { color: #4a4234; transition: color .15s, transform .15s; background: none; border: 0; font-size: inherit; cursor: pointer; }
.rate-stars .rs.hot { color: var(--brass); transform: scale(1.12); }
.rate-msg { margin-top: 12px; font-size: 0.9rem; color: var(--brass); min-height: 1.4em; }

/* ---------- Video grid ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 26px; }
.video-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; display: block; }
.video-card.reel { grid-row: span 2; }
.video-card.reel .video-frame { aspect-ratio: 9 / 16; height: 100%; }
.video-body { padding: 18px 20px 20px; }
.video-body .album-cat { display: inline-block; margin-bottom: 6px; }
.video-body p { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

/* ---------- About / services ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split .portrait-frame { border: 1px solid var(--line); padding: 14px; background: var(--surface); }
.split .portrait-frame img { width: 100%; display: block; }
.founder-frame { align-self: start; }
.founder-caption {
  display: block; padding: 14px 4px 2px; text-align: center;
  font-family: var(--display); font-style: italic; color: var(--muted); font-size: 0.98rem;
}
.prose p { margin-bottom: 18px; color: var(--muted); }
.prose p:first-of-type { color: var(--ivory); font-size: 1.12rem; }

.service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.service-item {
  border: 1px solid var(--line); background: var(--surface); padding: 34px 30px;
  border-radius: var(--radius); transition: border-color .25s;
  position: relative; overflow: hidden;
}
.service-item::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, var(--brass-soft), transparent 70%); opacity: 0; transition: opacity .3s;
}
.service-item:hover { border-color: var(--brass); }
.service-item:hover::after { opacity: 1; }
.service-item h3 { color: var(--ivory); margin-bottom: 10px; }
.service-item p { color: var(--muted); font-size: 0.94rem; }
.service-item .service-tag { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: 14px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=password], select, textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--line); color: var(--ivory);
  padding: 14px 16px; font-family: var(--body); font-size: 1rem; border-radius: var(--radius);
  transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brass); }
textarea { min-height: 150px; resize: vertical; }
select { appearance: none; }

.notice { padding: 16px 20px; border: 1px solid var(--brass); background: var(--brass-soft); color: var(--ivory); margin-bottom: 26px; border-radius: var(--radius); }
.notice.error { border-color: #b05744; background: rgba(176,87,68,.12); }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 70px); }
.contact-card { border-left: 1px solid var(--brass); padding-left: 26px; margin-bottom: 30px; }
.contact-card .label { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass); margin-bottom: 6px; }
.contact-card a, .contact-card p { font-family: var(--display); font-size: 1.35rem; color: var(--ivory); }
.contact-card a:hover { color: var(--brass); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, var(--brass-soft), transparent 70%);
}
.cta-band .wrap { position: relative; }
.cta-band h2 { max-width: 20ch; margin: 0 auto 18px; }
.cta-band .lede { margin: 0 auto 34px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 64px 24px 44px; }
.footer-grid a { display: block; color: var(--muted); font-size: 0.92rem; padding: 5px 0; transition: color .2s; }
.footer-grid a:hover { color: var(--brass); }
.footer-label { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; }
.footer-note { color: var(--muted); font-size: 0.92rem; max-width: 32ch; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 26px;
  color: var(--muted); font-size: 0.82rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--brass); }

/* ---------- Featured strip on home ---------- */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.strip a { position: relative; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3/4; background: var(--surface); }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.strip a:hover img { transform: scale(1.05); }
.strip .strip-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(12,10,8,.85));
  font-family: var(--display); font-style: italic; font-size: 1.15rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .site-nav {
    position: fixed; inset: 65px 0 auto 0; background: var(--ink);
    flex-direction: column; align-items: flex-start; gap: 0;
    border-bottom: 1px solid var(--line); padding: 10px 24px 24px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; font-size: 0.95rem; width: 100%; border-bottom: 1px solid var(--line); }
  .site-nav a.active { border-bottom: 1px solid var(--brass); }
  .site-nav .nav-cta { margin-top: 16px; text-align: center; }
  .nav-toggle { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

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

/* ---------- Social icons ---------- */
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  color: var(--muted); transition: color .2s, border-color .2s, transform .2s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: var(--brass); border-color: var(--brass); transform: translateY(-2px); }

.footer-bottom { flex-wrap: wrap; gap: 10px; }
.footer-credit a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer-credit a:hover { color: var(--brass); }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff !important;
  box-shadow: 0 6px 22px rgba(0,0,0,0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37,211,102,0.35); }
.whatsapp-tip {
  position: absolute; right: 70px; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--line); color: var(--ivory);
  font-size: 0.78rem; letter-spacing: 0.08em; padding: 8px 14px;
  opacity: 0; transform: translateX(6px); pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.whatsapp-float:hover .whatsapp-tip,
.whatsapp-float:focus-visible .whatsapp-tip { opacity: 1; transform: translateX(0); }
@media (max-width: 760px) {
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
