/* ==========================================================================
   Milena Žilić — Styles
   ========================================================================== */

/* Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Design Tokens
   ========================================================================== */
:root {
  --white: #FFFFFF;
  --offwhite: #FAFAF8;
  --gold: #C9A84C;
  --gold-light: #F0E8D0;
  --gold-dark: #8C6D2F;
  --black: #141210;
  --text: #1C1C1A;
  --muted: #8A8680;
  --border: #E8E2D8;
  --gold-gradient: linear-gradient(to right, #8C6D2F, #EDD98A);
}

/* Typography Base
   ========================================================================== */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

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

/* Skip to Content
   ========================================================================== */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}

.skip-to-content:focus {
  left: 0;
}

/* Navigation
   ========================================================================== */
nav {
  background: var(--black);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
}

.nav-logo span {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  background: var(--gold-gradient);
  color: var(--black);
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons
   ========================================================================== */
.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  display: inline-block;
  border: none;
  transition: opacity 0.2s;
}

.btn-gold:hover {
  opacity: 0.9;
}

.btn-outline {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid rgba(28, 28, 26, 0.3);
  padding-bottom: 2px;
  display: inline-block;
  background: none;
  transition: opacity 0.2s;
}

.btn-outline:hover {
  opacity: 0.7;
}

/* Focus Styles
   ========================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.btn-gold:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Kicker Components
   ========================================================================== */
.kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-gradient);
  flex-shrink: 0;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: 0.03em;
}

.section-h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

/* Ornament Divider
   ========================================================================== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 64px;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ornament-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.2em;
}

/* Pull Quote
   ========================================================================== */
.pull-quote {
  padding: 96px 120px;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.pull-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 320px;
  color: rgba(201, 168, 76, 0.06);
  position: absolute;
  top: -60px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}

.pull-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

.pull-quote-text em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pull-quote-attr {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* Page Header
   ========================================================================== */
.page-header {
  background: var(--black);
  padding: 64px 64px 56px;
}

.ph-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}

.ph-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.ph-h1 em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 5fr 6fr;
  min-height: 92vh;
}

.hero-text {
  padding: 96px 80px 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--offwhite);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-img {
  background: var(--gold-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder Photos */
.photo-ph {
  width: 280px;
  height: 380px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.photo-ph-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold-dark);
}

.photo-ph-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  opacity: 0.6;
}

/* Stats Bar
   ========================================================================== */
.stats {
  background: var(--black);
  padding: 28px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  text-align: center;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Intro Section
   ========================================================================== */
.intro {
  padding: 96px 64px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  background: var(--white);
}

.intro-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.intro-h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.intro-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.intro-body--accent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--text);
}

.intro-sig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 28px;
  display: inline-block;
}

/* Services Section
   ========================================================================== */
.services {
  background: var(--offwhite);
  padding: 80px 64px;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.svc-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: block;
  color: inherit;
}

.svc-card:hover {
  background: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
}

.svc-card:hover .svc-title,
.svc-card:hover .svc-body {
  color: var(--white);
}

.svc-card:hover .svc-body {
  opacity: 0.55;
}

.svc-card:hover .svc-num {
  color: rgba(255, 255, 255, 0.06);
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(201, 168, 76, 0.15);
}

.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gold-light);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  transition: color 0.25s;
}

.svc-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.25s;
  line-height: 1.2;
  font-weight: 400;
}

.svc-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  transition: color 0.25s, opacity 0.25s;
}

/* About Teaser Section
   ========================================================================== */
.about-teaser {
  padding: 96px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}

.about-img-wrap {
  position: relative;
}

.about-img-block {
  background: var(--gold-light);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.about-img-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold-dark);
  opacity: 0.4;
  font-style: italic;
}

.about-tag {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold-gradient);
  padding: 24px 32px;
}

.about-tag-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}

.about-tag-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20, 18, 16, 0.7);
}

.about-teaser-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.about-teaser-h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-teaser-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cred {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.cred:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateX(4px);
}

.cred-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.cred-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Guide Section
   ========================================================================== */
.guide {
  background: var(--black);
  padding: 80px 64px;
}

.guide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.guide-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.guide-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.guide-h2 em {
  font-style: italic;
  color: var(--gold);
}

.guide-body {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.guide-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

.guide-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 48px 40px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.guide-card-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: block;
}

.guide-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.guide-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 32px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.check-item::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Testimonials Section
   ========================================================================== */
.testi {
  padding: 96px 64px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.testi-head {
  text-align: center;
  margin-bottom: 64px;
}

.testi-head-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.testi-head-h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.testi-card {
  padding: 40px 36px;
  background: var(--white);
}

.testi-card:nth-child(2) {
  background: var(--offwhite);
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 0.8;
  margin-bottom: 24px;
}

.testi-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 32px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.testi-type {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Instagram Section
   ========================================================================== */
.ig-section {
  padding: 80px 64px;
  background: var(--offwhite);
  border-top: 1px solid var(--border);
}

.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.ig-header-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.ig-header-h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.ig-follow {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
  white-space: nowrap;
}

.ig-intro-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 48px;
}

/* Behold.so widget container */
behold-widget {
  display: block;
}

/* CTA Section
   ========================================================================== */
.cta {
  background: var(--offwhite);
  padding: 96px 64px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-kicker {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.cta-h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.cta-body {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* Footer
   ========================================================================== */
footer {
  background: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  padding: 64px 64px 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo span {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
  max-width: 240px;
}

.footer-nav-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.7);
  margin-bottom: 20px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-nav-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.7);
  margin-bottom: 20px;
}

.footer-newsletter-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-right: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: white;
  outline: none;
  min-width: 0;
}

.footer-newsletter-input:focus {
  border-color: rgba(201, 168, 76, 0.5);
}

.footer-newsletter-btn {
  padding: 12px 20px;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  white-space: nowrap;
}

.footer-bottom {
  padding: 20px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* About Page
   ========================================================================== */
.about-page {
  padding: 80px 64px;
  background: var(--white);
}

.about-hero {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-photo {
  background: var(--gold-light);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.about-photo-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold-dark);
  font-style: italic;
  opacity: 0.4;
}

.about-content h1,
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.about-content h1 em,
.about-content h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-highlight {
  border: 1px solid var(--gold);
  padding: 16px;
  margin: 28px 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0.02) 100%);
}

.about-highlight p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.edu-block {
  background: var(--offwhite);
  padding: 48px;
  border: 1px solid var(--border);
}

.edu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 32px;
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.edu-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.edu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.edu-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.edu-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.edu-text strong {
  color: var(--text);
  font-weight: 500;
}

/* Investicija Page
   ========================================================================== */
.inv-page {
  padding: 80px 64px;
  background: var(--white);
}

.inv-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 56px;
  line-height: 1.8;
  max-width: 560px;
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.inv-card {
  background: var(--white);
  padding: 40px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: block;
  color: inherit;
}

.inv-card:hover {
  background: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.inv-card:hover .inv-title,
.inv-card:hover .inv-body,
.inv-card:hover .inv-disclaimer {
  color: rgba(255, 255, 255, 0.8);
}

.inv-card:hover .inv-tag,
.inv-card:hover .inv-price,
.inv-card:hover .inv-btn {
  color: var(--gold);
}

.inv-card:hover .inv-btn {
  border-color: rgba(201, 168, 76, 0.5);
}

.inv-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  transition: color 0.25s;
}

.inv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color 0.25s;
  font-weight: 400;
}

.inv-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.25s;
}

.inv-disclaimer {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 8px;
  font-style: italic;
  transition: color 0.25s;
}

.inv-footer {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inv-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold-dark);
  transition: color 0.25s;
}

.inv-btn {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.inv-workshops {
  background: var(--offwhite);
  padding: 48px;
  border: 1px solid var(--border);
  margin-top: 1px;
}

.inv-workshops-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.inv-workshops-h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.inv-workshops-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 560px;
}

/* Contact Page
   ========================================================================== */
.kontakt-page {
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--white);
}

.kontakt-info p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 48px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ci {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 500;
}

.ci-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 15px;
  color: var(--text);
}

.ci-value a {
  transition: color 0.2s;
}

.ci-value a:hover {
  color: var(--gold-dark);
}

.contact-form {
  background: var(--offwhite);
  padding: 48px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-bottom-color: var(--gold);
}

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

/* Booking Page
   ========================================================================== */
.zak-page {
  padding: 80px 64px;
  background: var(--white);
}

.zak-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 56px;
  max-width: 520px;
  line-height: 1.8;
}

.bk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.bk-card {
  background: var(--white);
  padding: 36px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.bk-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.1);
}

.bk-type {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.bk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 400;
}

.bk-price {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.bk-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Cal.com Embed */
.cal-embed {
  margin-top: 56px;
  min-height: 500px;
  overflow: auto;
}

/* Success Page
   ========================================================================== */
.success-page {
  padding: 120px 64px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 24px;
}

.success-page h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.success-page p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 420px;
}

/* Fade-in Animations
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

/* Responsive — 1024px
   ========================================================================== */
@media (max-width: 1024px) {
  .hero {
    min-height: 70vh;
  }

  .hero-text {
    padding: 64px 48px;
  }

  .intro {
    padding: 72px 48px;
    gap: 48px;
  }

  .services {
    padding: 64px 48px;
  }

  .about-teaser {
    padding: 72px 48px;
    gap: 48px;
  }

  .guide {
    padding: 64px 48px;
  }

  .guide-h2 {
    font-size: 40px;
  }

  .testi {
    padding: 72px 48px;
  }

  .ig-section {
    padding: 64px 48px;
  }

  .cta {
    padding: 72px 48px;
  }

  .pull-quote {
    padding: 72px 64px;
  }

  .ornament {
    padding: 36px 48px;
  }

  .about-page {
    padding: 64px 48px;
  }

  .about-hero {
    gap: 48px;
  }

  .kontakt-page {
    padding: 64px 48px;
    gap: 48px;
  }

  .zak-page {
    padding: 64px 48px;
  }

  .inv-page {
    padding: 64px 48px;
  }

  .page-header {
    padding: 48px 48px 40px;
  }

  nav {
    padding: 0 32px;
  }

  .footer-top {
    padding: 48px 48px 36px;
    gap: 40px;
  }

  .footer-bottom {
    padding: 16px 48px;
  }

  .stats {
    padding: 24px 48px;
  }
}

/* Responsive — 768px
   ========================================================================== */
@media (max-width: 768px) {
  /* Mobile Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px 32px 32px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links .nav-cta-mobile {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 12px 24px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 48px 32px;
    order: 1;
  }

  .hero-img {
    min-height: 300px;
    order: 0;
  }

  .hero-body {
    max-width: 100%;
  }

  /* Stats */
  .stats {
    padding: 24px 32px;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .stats > div:not(.stat-div) {
    flex: 0 0 calc(50% - 16px);
  }

  .stat-div {
    display: none;
  }

  /* Intro */
  .intro {
    grid-template-columns: 1fr;
    padding: 56px 32px;
    gap: 16px;
  }

  /* Pull Quote */
  .pull-quote {
    padding: 56px 32px;
  }

  .ornament {
    padding: 32px;
  }

  /* Services */
  .services {
    padding: 56px 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* About Teaser */
  .about-teaser {
    grid-template-columns: 1fr;
    padding: 56px 32px;
    gap: 48px;
  }

  .about-tag {
    bottom: -16px;
    right: -16px;
    padding: 16px 24px;
  }

  .about-teaser-h2 {
    font-size: 36px;
  }

  /* Guide */
  .guide {
    padding: 56px 32px;
  }

  .guide-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guide-h2 {
    font-size: 36px;
  }

  /* Testimonials */
  .testi {
    padding: 56px 32px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-head-h2 {
    font-size: 36px;
  }

  /* Instagram */
  .ig-section {
    padding: 56px 32px;
  }

  .ig-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ig-header-h2 {
    font-size: 32px;
  }


  /* CTA */
  .cta {
    padding: 56px 32px;
  }

  .cta-h2 {
    font-size: 42px;
  }

  .cta-actions {
    flex-direction: column;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 32px 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 16px 32px;
    text-align: center;
  }

  /* Page Header */
  .page-header {
    padding: 40px 32px 32px;
  }

  .ph-h1 {
    font-size: 40px;
  }

  /* About Page */
  .about-page {
    padding: 48px 32px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h1,
  .about-content h2 {
    font-size: 40px;
  }

  .edu-block {
    padding: 32px;
  }

  /* Investicija */
  .inv-page {
    padding: 48px 32px;
  }

  .inv-grid {
    grid-template-columns: 1fr;
  }

  .inv-workshops {
    padding: 32px;
  }

  /* Contact */
  .kontakt-page {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 48px;
  }

  /* Booking */
  .zak-page {
    padding: 48px 32px;
  }

  .bk-grid {
    grid-template-columns: 1fr;
  }

  .cal-embed {
    margin-top: 40px;
    min-height: 400px;
  }

  /* Success */
  .success-page {
    padding: 80px 32px;
  }

  .success-page h1 {
    font-size: 36px;
  }
}

/* Responsive — 480px
   ========================================================================== */
@media (max-width: 480px) {
  .hero-text {
    padding: 36px 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats {
    padding: 20px;
  }

  .stat-num {
    font-size: 28px;
  }

  nav {
    padding: 0 20px;
  }

  .intro {
    padding: 40px 20px;
  }

  .pull-quote {
    padding: 40px 20px;
  }

  .services {
    padding: 40px 20px;
  }

  .about-teaser {
    padding: 40px 20px;
  }

  .guide {
    padding: 40px 20px;
  }

  .guide-card {
    padding: 32px 24px;
  }

  .testi {
    padding: 40px 20px;
  }

  .ig-section {
    padding: 40px 20px;
  }

  .cta {
    padding: 40px 20px;
  }

  .ornament {
    padding: 24px 20px;
  }

  .page-header {
    padding: 32px 20px 24px;
  }

  .ph-h1 {
    font-size: 32px;
  }

  .about-page,
  .inv-page,
  .kontakt-page,
  .zak-page {
    padding: 32px 20px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .success-page {
    padding: 60px 20px;
  }

  .footer-top {
    padding: 32px 20px 24px;
  }

  .footer-bottom {
    padding: 16px 20px;
  }
}
