/* ===== SoulCraft Mirror — placeholder site ===== */
:root {
  --cream:    #f7f3ec;
  --cream-2:  #efe6d6;
  --sand:     #e7d8c2;
  --tan:      #b0896a;
  --clay:     #ac835f;
  --clay-deep:#8c6b4a;
  --olive:    #8d8a5e;
  --ink:      #43382e;
  --muted:    #8a7560;
  --line:     #ddcfba;
  --shadow:   0 18px 50px -22px rgba(59, 47, 39, .35);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, #fbf6ee 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 110%, #f0e4d2 0%, transparent 55%),
    var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

::selection { background: var(--clay); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(246, 239, 230, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216, 199, 176, .55);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark { color: var(--clay); display: inline-flex; }
.brand__logo { height: 34px; width: auto; display: block; }
.brand__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .04em;
  font-weight: 600;
}
.brand__name em { font-style: italic; color: var(--clay-deep); font-weight: 500; }

.lang { display: inline-flex; align-items: center; gap: 6px; }
.lang__sep { color: var(--line); }
.lang-btn {
  border: 0;
  background: none;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 2px;
  transition: color .2s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { color: var(--clay-deep); font-weight: 500; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 14vw, 150px) clamp(20px, 5vw, 64px) clamp(60px, 10vw, 110px);
  text-align: center;
}
.hero__sun {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 120vw);
  aspect-ratio: 1;
  transform: translate(-50%, -54%);
  color: var(--clay);
  opacity: .18;
  pointer-events: none;
}
.hero__sun svg { width: 100%; height: 100%; }
.sunburst circle { animation: spin 120s linear infinite; transform-origin: 300px 300px; }

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

.hero__inner { position: relative; max-width: 760px; margin: 0 auto; }

.eyebrow {
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin: 0 0 18px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 11vw, 104px);
  line-height: .98;
  letter-spacing: .01em;
  margin: 0 0 22px;
}
.hero__title em { font-style: italic; color: var(--clay-deep); }
.hero__logo {
  width: min(560px, 86vw);
  height: auto;
  margin: 0 auto 6px;
  display: block;
}
.hero__lead {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 auto 14px;
  max-width: 560px;
}
.hero__soon {
  font-size: 15px;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 460px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .06em;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .2s ease, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(166, 94, 66, .8);
}
.btn--primary:hover { background: var(--clay-deep); }
.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .35);
}
.btn--ghost:hover { border-color: var(--clay); color: var(--clay-deep); }
.btn .ic { flex: none; }

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(34px, 6vw, 56px); }
.section-head__kicker,
.section-head h2 + .section-head__sub { }
.section-head__kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 6vw, 46px);
  margin: 0 0 12px;
}
.section-head__sub { color: var(--muted); margin: 0; font-size: 16px; }

/* ===== Gallery ===== */
.gallery { padding: clamp(20px, 4vw, 40px) clamp(20px, 5vw, 64px) clamp(60px, 9vw, 100px); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  max-width: 1180px;
  margin: 0 auto;
}
.tile {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow);
  cursor: default;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}
.tile.is-loaded { cursor: zoom-in; }
.tile.is-loaded img { opacity: 1; }
.tile.is-loaded:hover img { transform: scale(1.05); }

/* boho placeholder for not-yet-added photos */
.tile--placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 50% 0%, #f3e8d7 0%, var(--cream-2) 60%);
  border: 1px solid var(--line);
}
.tile--placeholder::before {
  content: "";
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, var(--clay) 0deg 2deg, transparent 2deg 15deg);
  -webkit-mask: radial-gradient(circle, transparent 30%, #000 31% 46%, transparent 47%);
          mask: radial-gradient(circle, transparent 30%, #000 31% 46%, transparent 47%);
  opacity: .35;
}
.tile--placeholder::after {
  content: "SoulCraft Mirror";
  position: absolute;
  bottom: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ===== Contact ===== */
.contact { padding: clamp(50px, 8vw, 96px) clamp(20px, 5vw, 64px) clamp(70px, 10vw, 110px); }
.contact__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.2));
  border: 1px solid rgba(216, 199, 176, .7);
  border-radius: 26px;
  padding: clamp(36px, 6vw, 60px);
  box-shadow: var(--shadow);
}
.contact__inner h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 40px);
  margin: 0 0 12px;
}
.contact__lead { color: var(--muted); margin: 0 auto 30px; max-width: 460px; }
.contact__links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 190px;
  padding: 22px 26px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform .18s, border-color .2s, box-shadow .2s;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--clay);
  box-shadow: 0 16px 36px -20px rgba(166, 94, 66, .7);
}
.contact-card .ic { color: var(--clay); margin-bottom: 4px; }
.contact-card__label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.contact-card__value { font-family: var(--serif); font-size: 19px; }

/* ===== Footer ===== */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 30px 20px 40px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
  border-top: 1px solid rgba(216, 199, 176, .55);
}
.site-footer .dot { color: var(--line); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(40, 30, 24, .82);
  backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }

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

@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .contact-card { min-width: 0; flex: 1 1 140px; }
}
