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

:root {
  --taupe-dark:   #b8a898;
  --taupe-mid:    #c9b9a8;
  --taupe-light:  #d9cdbf;
  --cream:        #ede4d8;
  --cream-panel:  #f2ece3;
  --blush:        #fdf0f0;
  --text-dark:    #2e2520;
  --text-mid:     #4a3d36;
  --text-light:   #7a6a60;
  --white:        #ffffff;
  --gold:         #c9a96e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  padding-top: 76px; /* offset for fixed nav */
}

/* ── NAV ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(46, 37, 32, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 50%;
  opacity: 0.9;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-top: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav ul a {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--white); }
nav ul a.nav-active { color: var(--white); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ── HERO ─────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero-img-wrap img.hero-bg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46,37,32,0.30) 0%,
    rgba(46,37,32,0.12) 40%,
    rgba(46,37,32,0.62) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-align: center;
  padding: 72px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-logo {
  width: 160px;
  height: auto;
  opacity: 0.92;
  margin-bottom: 4px;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.45);
  margin: 4px auto;
}

.hero-sub {
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}

.btn {
  display: inline-block;
  margin-top: 8px;
  padding: 13px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.65);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
}

.btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
}

.btn-dark {
  border-color: var(--taupe-mid);
  color: var(--text-mid);
  background: transparent;
}

.btn-dark:hover {
  background: var(--taupe-mid);
  color: var(--white);
  border-color: var(--taupe-mid);
}

/* ── SECTIONS SHARED ──────────────────────────────── */
section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section-inner.left { text-align: left; }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

h2 em {
  font-style: italic;
  color: var(--text-mid);
}

.section-sub {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 28px;
}

.rule-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 28px;
}

.rule-line.left { margin-left: 0; }

p {
  font-size: 1.14rem;
  line-height: 1.78;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── INLINE LINK ─────────────────────────────────── */
.text-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.text-link:hover {
  color: var(--text-dark);
}

/* ── ABOUT ────────────────────────────────────────── */
#about {
  background: var(--cream);
}

/* ── PHOTO STUDIO ─────────────────────────────────── */
#studio {
  background: var(--cream-panel);
}

.studio-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  opacity: 0.7;
}

.panel {
  margin-top: 36px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.panel p { font-size: 1.1rem; }

/* ── RULES ────────────────────────────────────────── */
#rules {
  background: var(--taupe-light);
}

.rules-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rules-list li {
  background: var(--cream-panel);
  padding: 20px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.rule-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.rule-text {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── HELP ─────────────────────────────────────────── */
#help {
  background: var(--cream);
}

.help-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.help-item {
  background: var(--cream-panel);
  padding: 22px 24px;
  border-top: 2px solid var(--taupe-mid);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: border-color 0.2s, transform 0.2s;
}

.help-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.help-item-icon {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.help-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.help-item p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-light);
}

/* ── VISIT ────────────────────────────────────────── */
#visit {
  background: linear-gradient(160deg, #2e2520 0%, #3d3028 60%, #4a3d36 100%);
  padding: 112px 24px;
}

#visit .eyebrow { color: var(--taupe-light); }

#visit h2 {
  color: var(--white);
}

#visit .section-sub {
  color: rgba(255,255,255,0.6);
}

#visit .rule-line {
  background: rgba(255,255,255,0.25);
}

#visit p {
  color: rgba(255,255,255,0.7);
}

.slurl-box {
  margin-top: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.slurl-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: 'Lato', sans-serif;
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: #1e1712;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 72px;
  width: auto;
  opacity: 0.75;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
}

.footer-legal {
  width: 100%;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  margin-top: 8px;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 640px) {
  nav { padding: 14px 20px; }
  nav ul { gap: 20px; }
  nav ul a { font-size: 0.7rem; letter-spacing: 0.08em; }
  .help-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}
