/* ============================================================
   GLYNAR — style.css v3 · Editorial Luxury
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.005em;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* === SUBTLE PAPER GRAIN OVERLAY === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* === VARIABLES === */
:root {
  --paper:       #F5EDDB;
  --paper-warm:  #F0E5CC;
  --ivory:       #FBF6EB;
  --ink:         #2B1810;
  --ink-soft:    #5A3D2A;
  --ink-mute:    #8B6D55;
  --brown:       #8B5A3C;
  --brown-deep:  #3D2114;
  --brown-night: #1A0E07;
  --copper:      #B8895C;
  --copper-soft: #D4A578;
  --border:      rgba(43, 24, 16, 0.12);
  --border-soft: rgba(43, 24, 16, 0.06);
  --shadow-sm:   0 2px 12px rgba(43, 24, 16, 0.06);
  --shadow:      0 12px 48px rgba(43, 24, 16, 0.10);
  --shadow-lg:   0 24px 80px rgba(43, 24, 16, 0.16);
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* === TYPOGRAPHY === */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}
.tracked {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.section-title em,
.section-title i {
  font-style: italic;
  font-weight: 400;
  color: var(--brown);
}
.section-center { text-align: center; }

.section-sub {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 72px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 28px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brown);
}
.section-label--light { color: rgba(245, 237, 219, 0.7); }
.section-label--light::before { background: rgba(245, 237, 219, 0.5); }
.section-label--center { justify-content: center; }

.section-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--copper);
  letter-spacing: 0.04em;
}

/* === CONTAINER === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* === UTILITIES === */
.mt-8  { margin-top: 32px; }
.mt-16 { margin-top: 64px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}
.btn:hover::after { transform: translateX(0); }
.btn:hover { transform: translateY(-1px); }

.btn-brown {
  background: var(--brown-deep);
  color: var(--ivory);
  border-color: var(--brown-deep);
}
.btn-brown:hover { background: var(--brown-night); }

.btn-cream {
  background: var(--ivory);
  color: var(--brown-deep);
  border-color: var(--ivory);
}
.btn-cream:hover { background: var(--paper-warm); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 237, 219, 0.35);
}
.btn-ghost:hover {
  background: rgba(245, 237, 219, 0.06);
  border-color: var(--ivory);
}

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

/* === LOADER === */
.loader {
  position: fixed;
  inset: 0;
  background: var(--brown-night);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transition: opacity 1.0s var(--ease-out), visibility 1.0s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  color: var(--ivory);
  letter-spacing: 0.03em;
  opacity: 0;
  animation: loader-fade 1.8s var(--ease-out) forwards;
}
@keyframes loader-fade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.loader-bar {
  width: 180px;
  height: 1px;
  background: rgba(245, 237, 219, 0.18);
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--copper-soft);
  width: 0;
  animation: loader-fill 1.5s var(--ease-out) forwards;
}
@keyframes loader-fill {
  to { width: 100%; }
}

/* === PROGRESS BAR === */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--copper);
  z-index: 200;
  transition: width 0.1s linear;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease-out),
              background 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 16px 48px;
  background: rgba(245, 237, 219, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-soft);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  color: var(--ivory);
  letter-spacing: 0.02em;
  transition: color 0.4s var(--ease-out);
}
.nav.scrolled .nav-logo { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 44px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 237, 219, 0.85);
  transition: color 0.3s var(--ease-out);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--ink); }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 12px 28px;
  border: 1px solid rgba(245, 237, 219, 0.35);
  transition: all 0.4s var(--ease-out);
}
.nav-cta:hover {
  background: var(--ivory);
  color: var(--brown-deep);
  border-color: var(--ivory);
}
.nav.scrolled .nav-cta { color: var(--ink); border-color: var(--ink); }
.nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--ivory); }

@media (max-width: 768px) {
  .nav { padding: 18px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 24px; }
  .nav-cta { padding: 10px 18px; font-size: 10px; letter-spacing: 0.22em; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-night);
}
.hero-parallax {
  position: absolute;
  inset: -10% 0;
  z-index: 1;
  will-change: transform;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,14,7,0.55) 0%, rgba(26,14,7,0.25) 30%, rgba(26,14,7,0.65) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  color: var(--ivory);
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 237, 219, 0.75);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--copper-soft);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(96px, 18vw, 240px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  color: var(--ivory);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--copper-soft);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: rgba(245, 237, 219, 0.85);
  max-width: 460px;
  margin-bottom: 56px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(245, 237, 219, 0.5);
  animation: scroll-pulse 1.8s var(--ease-out) infinite;
}
.hero-scroll span:nth-child(2) { animation-delay: 0.2s; }
.hero-scroll span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.5); }
}

/* Side vertical text */
.hero-side {
  position: absolute;
  right: 32px;
  bottom: 120px;
  z-index: 4;
  writing-mode: vertical-rl;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 237, 219, 0.55);
}

@media (max-width: 768px) {
  .hero-content { padding: 0 20px; }
  .hero-side { display: none; }
  .hero-desc { font-size: 15px; }
  .hero-actions .btn { padding: 14px 24px; font-size: 10px; }
}

.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal-hero 1.2s var(--ease-out) forwards;
}
.reveal-hero:nth-child(1) { animation-delay: 0.3s; }
.reveal-hero:nth-child(2) { animation-delay: 0.5s; }
.reveal-hero:nth-child(3) { animation-delay: 0.7s; }
.reveal-hero:nth-child(4) { animation-delay: 0.9s; }
.reveal-hero:nth-child(5) { animation-delay: 1.1s; }
@keyframes reveal-hero {
  to { opacity: 1; transform: translateY(0); }
}

/* === MARQUEE === */
.marquee {
  background: var(--brown-night);
  color: var(--paper);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(245, 237, 219, 0.08);
  border-bottom: 1px solid rgba(245, 237, 219, 0.08);
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  align-items: center;
}
.marquee span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--copper-soft);
}
.marquee .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === STATS === */
.stats {
  background: var(--paper);
  padding: 120px 0;
  border-bottom: 1px solid var(--border-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: var(--border);
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--brown-deep);
  margin-bottom: 16px;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.stat-divider { display: none; }

@media (max-width: 768px) {
  .stats { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(odd)::after { display: none; }
}

/* === ABOUT === */
.about {
  background: var(--paper);
  padding: 140px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-photo-col { position: relative; }
.about-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  filter: saturate(0.92);
}
.about-photo-wrap:hover img { transform: scale(1.04); }
.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 1px solid var(--brown);
  z-index: -1;
  opacity: 0.25;
}
.about-photo-badge {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 152px;
  height: 152px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 3;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--brown-deep);
  line-height: 1;
}
.badge-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-weight: 300;
}
.about-text p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 0;
  color: var(--brown);
}

@media (max-width: 968px) {
  .about { padding: 96px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-photo-wrap { aspect-ratio: 4 / 5; }
  .about-photo-badge { width: 112px; height: 112px; right: -16px; bottom: -16px; }
  .badge-num { font-size: 40px; }
}

/* === GALLERY === */
.gallery-sec {
  background: var(--ivory);
  padding: 140px 0;
}
.gallery-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 2px;
  padding: 0 24px;
}
.gallery-item:nth-child(1) { grid-column: 1;     grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 2;     grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3;     grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 4;     grid-row: 1; }
.gallery-item:nth-child(6) { grid-column: 4;     grid-row: 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter 0.8s var(--ease-out);
  filter: saturate(0.95);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,14,7,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
  letter-spacing: 0.01em;
  transform: translateY(12px);
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

@media (max-width: 768px) {
  .gallery-sec { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
    padding: 0 16px;
  }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .gallery-overlay { opacity: 1; padding: 16px; }
  .gallery-overlay span { font-size: 16px; transform: none; }
}

/* === WORKSHOPS === */
.workshops {
  background: var(--paper);
  padding: 140px 0;
}
.workshops-head {
  text-align: center;
  margin-bottom: 88px;
}

.mk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.mk-card {
  background: var(--ivory);
  overflow: hidden;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.0s var(--ease-out), transform 1.0s var(--ease-out), box-shadow 0.6s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-soft);
}
.mk-card.visible { opacity: 1; transform: translateY(0); }
.mk-card:hover { box-shadow: var(--shadow-lg); }

.mk-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--brown-deep);
}
.mk-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.8s var(--ease-out);
  filter: saturate(0.9);
}
.mk-card:hover .mk-card-img img { transform: scale(1.06); filter: saturate(1.0); }
.mk-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,14,7,0.35) 100%);
  pointer-events: none;
}

.mk-card-body {
  padding: 36px 32px 40px;
  text-align: left;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mk-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 14px;
  text-transform: none;
  line-height: 1.1;
}
.mk-card-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1;
  font-weight: 300;
}
.mk-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  align-self: flex-start;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--brown);
  transition: all 0.4s var(--ease-out);
}
.mk-link:hover {
  color: var(--brown-deep);
  border-bottom-color: var(--brown-deep);
  letter-spacing: 0.34em;
}

.workshops-note {
  text-align: center;
  margin-top: 72px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-mute);
}

@media (max-width: 968px) {
  .workshops { padding: 80px 0; }
  .mk-grid { grid-template-columns: 1fr; gap: 28px; }
  .mk-card-body { padding: 28px 24px 32px; }
}

/* === PRICING === */
.pricing {
  background: var(--brown-night);
  color: var(--paper);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184, 137, 92, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.pricing .section-title { color: var(--paper); }
.pricing .section-title em { color: var(--copper-soft); }

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 64px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  flex-wrap: wrap;
}
.ptab {
  background: transparent;
  border: none;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 237, 219, 0.5);
  cursor: pointer;
  transition: color 0.4s var(--ease-out);
  position: relative;
}
.ptab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--copper-soft);
  transition: width 0.5s var(--ease-out);
}
.ptab:hover { color: rgba(245, 237, 219, 0.85); }
.ptab.active { color: var(--copper-soft); }
.ptab.active::after { width: 40px; }

.ptab-panel { display: none; opacity: 0; transition: opacity 0.6s var(--ease-out); }
.ptab-panel.active { display: block; opacity: 1; }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  background: transparent;
  border: 1px solid rgba(245, 237, 219, 0.15);
  padding: 56px 48px;
  position: relative;
  transition: border-color 0.5s var(--ease-out), background 0.5s var(--ease-out);
}
.price-card:hover {
  border-color: rgba(245, 237, 219, 0.35);
  background: rgba(245, 237, 219, 0.02);
}
.price-card--dark {
  background: rgba(184, 137, 92, 0.06);
  border-color: rgba(184, 137, 92, 0.35);
}
.price-head {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245, 237, 219, 0.12);
}
.price-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 38px;
  color: var(--paper);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.price-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-soft);
}
.price-badge--light { color: rgba(245, 237, 219, 0.7); }

.price-list {
  list-style: none;
  margin-bottom: 36px;
}
.price-list li {
  font-size: 15px;
  color: rgba(245, 237, 219, 0.75);
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 237, 219, 0.08);
  font-weight: 300;
  position: relative;
  padding-left: 22px;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 1px;
  background: var(--copper-soft);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 237, 219, 0.08);
}
.price-row:last-of-type { border-bottom: none; }
.price-row span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 237, 219, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-row strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.price-big {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 96px;
  line-height: 1;
  color: var(--paper);
  margin: 28px 0;
  letter-spacing: -0.03em;
}
.price-big span {
  font-style: italic;
  font-size: 22px;
  color: var(--copper-soft);
  font-weight: 400;
  margin-left: 8px;
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(245, 237, 219, 0.55);
}
.pricing-other {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 0;
}
.pricing-other p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(245, 237, 219, 0.85);
  margin-bottom: 32px;
  line-height: 1.5;
}
.pricing-other-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-other-btns .btn-outline {
  color: var(--ivory);
  border-color: rgba(245, 237, 219, 0.35);
}
.pricing-other-btns .btn-outline:hover {
  background: var(--ivory);
  color: var(--brown-deep);
  border-color: var(--ivory);
}

@media (max-width: 768px) {
  .pricing { padding: 80px 0; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card { padding: 40px 28px; }
  .price-head h3 { font-size: 30px; }
  .price-big { font-size: 72px; }
}

/* === HOW IT WORKS === */
.how {
  position: relative;
  padding: 160px 0;
  color: var(--paper);
  overflow: hidden;
}
.how-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.how-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.7);
}
.how-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,14,7,0.7) 0%, rgba(26,14,7,0.85) 100%);
}
.how-content {
  position: relative;
  z-index: 2;
}
.how .section-title { color: var(--paper) !important; margin-bottom: 88px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(245, 237, 219, 0.2) 20%,
    rgba(245, 237, 219, 0.2) 80%,
    transparent 100%);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.0s var(--ease-out), transform 1.0s var(--ease-out);
}
.step.visible { opacity: 1; transform: translateY(0); }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brown-night);
  border: 1px solid var(--copper-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--copper-soft);
}
.step p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 237, 219, 0.78);
  font-weight: 300;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .how { padding: 80px 0; }
  .steps { grid-template-columns: 1fr 1fr; gap: 48px 24px; }
  .steps::before { display: none; }
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--ivory);
  padding: 140px 0;
}
.testimonials .section-label { display: block; text-align: center; margin: 0 auto 24px; justify-content: center; }
.testimonials .section-title { text-align: center; margin-bottom: 80px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testi-card {
  background: var(--paper);
  padding: 56px 40px 40px;
  position: relative;
  border: 1px solid var(--border-soft);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 96px;
  color: var(--copper-soft);
  line-height: 1;
  opacity: 0.5;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-stars {
  color: var(--copper);
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 20px;
}
.testi-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 32px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
}
.testi-author span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}

@media (max-width: 968px) {
  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* === INFO ACCORDION === */
.info-sec {
  background: var(--paper);
  padding: 140px 0;
}
.info-sec .section-label { display: block; text-align: center; margin: 0 auto 24px; justify-content: center; }
.info-sec .section-title { text-align: center; margin-bottom: 72px; }
.accordion {
  max-width: 820px;
  margin: 0 auto;
}
.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-item:first-child { border-top: 1px solid var(--border); }
.acc-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 32px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  text-align: left;
  letter-spacing: 0.005em;
  transition: color 0.3s var(--ease-out);
}
.acc-btn:hover { color: var(--brown); }
.acc-icon {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--brown);
  transition: transform 0.5s var(--ease-out);
  line-height: 1;
}
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out);
  padding: 0 8px;
}
.acc-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 300;
}
.acc-body p:first-child { padding-top: 4px; }
.acc-body p:last-child { padding-bottom: 32px; }

/* === BOOKING === */
.booking {
  position: relative;
  padding: 160px 0;
  color: var(--paper);
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.booking-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32) saturate(0.7);
}
.booking-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,14,7,0.85) 0%, rgba(61,33,20,0.75) 100%);
}
.booking-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: flex-start;
}
.booking-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 6vw, 84px);
  color: var(--paper);
  margin-bottom: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.booking-text > p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 237, 219, 0.82);
  margin-bottom: 24px;
  max-width: 380px;
  font-weight: 300;
}
.booking-alt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px !important;
  color: rgba(245, 237, 219, 0.7) !important;
}
.booking-alt a {
  color: var(--copper-soft);
  border-bottom: 1px solid var(--copper-soft);
  padding-bottom: 2px;
}
.booking-features {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 237, 219, 0.8);
  letter-spacing: 0.02em;
}
.bf-item span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--copper-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--copper-soft);
  flex-shrink: 0;
}

/* === BOOKING FORM === */
.booking-form {
  background: var(--ivory);
  padding: 56px 48px;
  color: var(--ink);
  border: 1px solid rgba(245, 237, 219, 0.15);
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 28px;
  position: relative;
}
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  transition: border-color 0.4s var(--ease-out);
  outline: none;
  letter-spacing: 0.005em;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-mute);
  font-style: italic;
  opacity: 0.7;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--brown);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-bottom-color: #C0392B;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238B5A3C' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  border: 1px solid var(--border);
  padding: 14px;
}
.form-group textarea:focus { border-color: var(--brown); }

/* Person pills */
.person-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.person-pill {
  flex: 1;
  min-width: 88px;
  padding: 14px 12px;
  background: transparent;
  border: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.person-pill:hover { border-color: var(--brown); color: var(--brown); }
.person-pill.active {
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: var(--ivory);
}

.btn-submit {
  width: 100%;
  margin-top: 12px;
  padding: 20px;
  background: var(--brown-deep);
  color: var(--ivory);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s var(--ease-out), letter-spacing 0.4s var(--ease-out);
  justify-content: center;
}
.btn-submit:hover {
  background: var(--brown-night);
  letter-spacing: 0.4em;
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success,
.form-error {
  margin-top: 24px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  border: 1px solid;
}
.form-success {
  border-color: rgba(46, 125, 50, 0.4);
  background: rgba(46, 125, 50, 0.06);
  color: #2E7D32;
}
.form-error {
  border-color: rgba(192, 57, 43, 0.4);
  background: rgba(192, 57, 43, 0.06);
  color: #C0392B;
}
.form-error a { color: #C0392B; text-decoration: underline; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (max-width: 968px) {
  .booking { padding: 80px 0; }
  .booking-inner { grid-template-columns: 1fr; gap: 56px; }
  .booking-form { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* === FOOTER === */
.footer {
  background: var(--brown-night);
  color: rgba(245, 237, 219, 0.75);
  padding: 100px 0 36px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 237, 219, 0.55);
  margin-bottom: 28px;
}
.footer-social .social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid rgba(245, 237, 219, 0.18);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 237, 219, 0.85);
  transition: all 0.4s var(--ease-out);
}
.footer-social .social-btn:hover {
  background: var(--ivory);
  color: var(--brown-night);
  border-color: var(--ivory);
}

.footer-info h4,
.footer-nav h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 20px;
}
.footer-info h4:not(:first-child) { margin-top: 28px; }
.footer-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(245, 237, 219, 0.75);
  line-height: 1.6;
}
.footer-nav a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(245, 237, 219, 0.7);
  padding: 6px 0;
  transition: color 0.3s var(--ease-out), padding-left 0.4s var(--ease-out);
}
.footer-nav a:hover { color: var(--ivory); padding-left: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(245, 237, 219, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 237, 219, 0.4);
}

@media (max-width: 768px) {
  .footer { padding: 64px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* === BACK TO TOP === */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brown-night);
  color: var(--copper-soft);
  border: 1px solid var(--copper-soft);
  cursor: pointer;
  font-size: 18px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.5s var(--ease-out);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover {
  background: var(--copper-soft);
  color: var(--brown-night);
  transform: translateY(-4px);
}

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay   { transition-delay: 0.15s; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === SECTION ORNAMENT === */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 32px;
  color: var(--copper);
}
.ornament::before,
.ornament::after {
  content: '';
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.ornament svg { opacity: 0.8; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb {
  background: var(--brown);
  border: 2px solid var(--paper);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brown-deep); }

/* === SELECTION === */
::selection {
  background: var(--brown-deep);
  color: var(--ivory);
}

/* ============================================================
   PREMIUM LAYER v4 — editorial drama additions
   ============================================================ */

/* === HERO TITLE — split letters with massive italic === */
.hero-title {
  font-size: clamp(120px, 26vw, 340px) !important;
  font-style: italic !important;
  line-height: 0.82 !important;
  letter-spacing: -0.045em !important;
  margin-bottom: 28px !important;
  display: block;
  position: relative;
}
.hero-title .hl-1,
.hero-title .hl-2 {
  display: inline-block;
}
.hero-title .hl-2 {
  color: var(--copper-soft);
  font-style: italic;
}

/* === HERO BACKDROP YEAR === */
.hero-year {
  position: absolute;
  bottom: -4vw;
  right: -2vw;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(180px, 28vw, 440px);
  line-height: 0.85;
  color: rgba(245, 237, 219, 0.05);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* === HERO ROTATING STAMP === */
.hero-stamp {
  position: absolute;
  top: 110px;
  right: 56px;
  width: 160px;
  height: 160px;
  z-index: 4;
  color: var(--copper-soft);
  animation: stamp-rotate 32s linear infinite;
  opacity: 0;
  animation: stamp-rotate 32s linear infinite, stamp-appear 1.6s var(--ease-out) 1.3s forwards;
}
.hero-stamp svg { width: 100%; height: 100%; }
.hero-stamp .stamp-core { animation: stamp-counter-rotate 32s linear infinite; }
@keyframes stamp-rotate {
  to { transform: rotate(360deg); }
}
@keyframes stamp-counter-rotate {
  to { transform: translate(100px, 100px) rotate(-360deg); }
}
@keyframes stamp-appear {
  to { opacity: 1; }
}
@media (max-width: 768px) {
  .hero-stamp { width: 100px; height: 100px; top: 90px; right: 16px; }
  .hero-year { font-size: clamp(140px, 36vw, 220px); bottom: -2vw; }
}

/* === HERO SCROLL — refined === */
.hero-scroll {
  bottom: 56px !important;
  flex-direction: column;
  gap: 14px !important;
  align-items: center;
}
.hero-scroll .scroll-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 237, 219, 0.5);
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  animation: none !important;
}
.hero-scroll .scroll-line {
  display: block;
  width: 1px !important;
  height: 56px !important;
  background: linear-gradient(180deg, var(--copper-soft) 0%, transparent 100%) !important;
  animation: scroll-line-pulse 2.2s var(--ease-out) infinite !important;
  transform-origin: top;
}
@keyframes scroll-line-pulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  61% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* === PHILOSOPHY SECTION === */
.philosophy {
  background: var(--paper);
  padding: 160px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}
.philosophy-inner {
  max-width: 880px;
}
.philosophy-mark {
  width: 60px;
  height: 60px;
  margin: 0 auto 56px;
  color: var(--copper);
}
.philosophy-mark svg { width: 100%; height: 100%; }
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 36px;
}
.philosophy-quote em {
  font-style: italic;
  color: var(--brown);
  font-weight: 400;
}
.philosophy-attr {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 768px) {
  .philosophy { padding: 96px 0; }
}

/* === BACKDROP MASSIVE TYPOGRAPHY === */
section.about,
section.gallery-sec,
section.workshops {
  position: relative;
  overflow: hidden;
}
.backdrop-type {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(180px, 32vw, 520px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(43, 24, 16, 0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  font-style: italic;
}
.backdrop-type em { font-style: italic; }
.backdrop-type--about {
  top: 8%;
  left: -4%;
}
.backdrop-type--gallery {
  bottom: -8%;
  right: -6%;
  color: rgba(43, 24, 16, 0.035);
}
.backdrop-type--workshops {
  top: -2%;
  right: -4%;
  color: rgba(43, 24, 16, 0.035);
}

/* === ABOUT — editorial spread === */
.about { padding: 180px 0 !important; }
.about-grid {
  grid-template-columns: 1fr 1.1fr !important;
  gap: 120px !important;
  position: relative;
  z-index: 2;
}
.about-photo-col {
  position: relative;
}
.about-photo-wrap {
  aspect-ratio: 4 / 5 !important;
  position: relative;
}
.about-photo-wrap::before {
  inset: -28px -28px 28px 28px !important;
  border-color: var(--copper) !important;
  opacity: 0.4 !important;
}
.about-photo-badge {
  position: absolute;
  bottom: -56px !important;
  right: -56px !important;
  width: 168px !important;
  height: 168px !important;
  background: var(--brown-night) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg) !important;
  color: var(--copper-soft);
  z-index: 5;
}
.badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: stamp-rotate 22s linear infinite;
  color: var(--copper-soft);
}
.about-photo-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 76px !important;
  color: var(--copper-soft) !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.about-text .section-title {
  font-size: clamp(60px, 7.5vw, 116px) !important;
  margin-bottom: 44px !important;
}
.about-text .about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px) !important;
  line-height: 1.45 !important;
  color: var(--ink) !important;
  margin-bottom: 36px !important;
}
.about-text p:not(.about-lead) {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 28px;
}
.about-text p:not(.about-lead):first-letter {
  font-family: inherit;
  font-style: normal;
  font-size: inherit;
  float: none;
  line-height: inherit;
  margin: 0;
  color: inherit;
}

/* Pull quote */
.pull-quote {
  margin: 48px 0;
  padding: 32px 0 32px 36px;
  border-left: 1px solid var(--copper);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--brown-deep);
  position: relative;
}
.pull-quote span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--copper);
  font-size: 1.2em;
}

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  transition: all 0.5s var(--ease-out);
}
.link-arrow span {
  transition: transform 0.5s var(--ease-out);
  display: inline-block;
}
.link-arrow:hover { color: var(--brown); border-color: var(--brown); letter-spacing: 0.38em; }
.link-arrow:hover span { transform: translateX(10px); }

@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 96px !important; }
  .about-photo-badge { width: 120px !important; height: 120px !important; right: -20px !important; bottom: -36px !important; }
  .about-photo-badge .badge-num { font-size: 50px !important; }
  .pull-quote { padding-left: 24px; }
}

/* === STATS — massive numbers === */
.stats { padding: 160px 0 !important; }
.stats-grid {
  gap: 40px !important;
}
.stat-num {
  font-size: clamp(96px, 14vw, 200px) !important;
  font-style: italic !important;
  letter-spacing: -0.04em !important;
  color: var(--brown-deep) !important;
  position: relative;
  display: inline-block !important;
}
.stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-item:not(:last-child)::after {
  height: 110px !important;
  background: var(--copper-soft) !important;
  opacity: 0.4;
}
.stat-label {
  letter-spacing: 0.36em !important;
  color: var(--ink-mute) !important;
  font-size: 10px !important;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .stat-num { font-size: clamp(72px, 22vw, 120px) !important; }
}

/* === WORKSHOPS — counter numbered cards === */
.mk-grid {
  counter-reset: mkcounter;
  gap: 48px !important;
}
.mk-card {
  counter-increment: mkcounter;
  position: relative;
}
.mk-card::before {
  content: counter(mkcounter, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 4;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--ivory);
  letter-spacing: 0.02em;
  background: rgba(26, 14, 7, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 237, 219, 0.25);
}
.mk-card-body h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 34px !important;
  text-transform: none !important;
  letter-spacing: -0.005em !important;
  color: var(--ink) !important;
  margin-bottom: 16px !important;
}

/* 6 cards on a clean 3x2 grid */

/* === TESTIMONIALS — huge floating quote === */
.testimonials {
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 720px;
  line-height: 1;
  color: var(--copper-soft);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.testimonials .container { position: relative; z-index: 1; }
.testi-card::before { font-size: 120px !important; opacity: 0.4 !important; }
.testi-card p {
  font-size: 21px !important;
  line-height: 1.55 !important;
}

/* === PRICING — refinement === */
.pricing { padding: 180px 0 !important; }
.price-card { padding: 64px 56px !important; }
.price-head h3 { font-size: 44px !important; }

/* === HOW — connector dots === */
.how { padding: 180px 0 !important; }
.how-content .section-title { margin-bottom: 120px !important; }
.step-num {
  width: 76px !important;
  height: 76px !important;
  font-size: 26px !important;
  background: rgba(26, 14, 7, 0.4) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.step p {
  font-size: 15px !important;
  max-width: 220px !important;
  margin: 0 auto !important;
}

/* === INFO ACCORDION — refinement === */
.info-sec { padding: 160px 0 !important; }
.acc-btn {
  font-size: 25px !important;
  padding: 36px 8px !important;
}

/* === BOOKING — refinement === */
.booking { padding: 180px 0 !important; }
.booking-text h2 {
  font-size: clamp(56px, 7vw, 96px) !important;
}

/* === FOOTER — MASSIVE bottom signature === */
.footer { padding: 120px 0 0 !important; overflow: hidden; }
.footer-grid { margin-bottom: 88px !important; }
.footer-mega {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(96px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 237, 219, 0.25);
  text-stroke: 1px rgba(245, 237, 219, 0.25);
  text-align: center;
  margin: 0 -3vw 24px;
  padding: 0 24px;
  user-select: none;
  transition: color 0.6s var(--ease-out), -webkit-text-stroke 0.6s var(--ease-out);
}
.footer-mega:hover {
  color: rgba(245, 237, 219, 0.08);
  -webkit-text-stroke-color: rgba(245, 237, 219, 0.5);
}
.footer-bottom { padding-top: 32px !important; padding-bottom: 36px !important; }

/* === LOADER — refined === */
.loader-logo {
  font-size: 88px !important;
}

/* === MARQUEE — bigger === */
.marquee { padding: 36px 0 !important; }
.marquee span { font-size: 32px !important; }

/* === NAV — refined === */
.nav { padding: 32px 56px !important; }
.nav.scrolled { padding: 18px 56px !important; }
.nav-logo { font-size: 34px !important; }
@media (max-width: 768px) {
  .nav { padding: 20px 20px !important; }
  .nav.scrolled { padding: 14px 20px !important; }
}

/* === SECTION TITLES — bigger globally === */
.section-title {
  font-size: clamp(48px, 7vw, 104px) !important;
}

/* === EM ACCENT GLOBAL === */
.section-title em,
.section-title i,
h2 em, h2 i {
  font-style: italic;
  font-weight: 400;
  color: var(--brown);
}
.pricing .section-title em,
.how .section-title em,
.booking-text h2 em {
  color: var(--copper-soft) !important;
}

/* === SMOOTH ANIMS === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
