@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --cream: #f5f0e8;
  --dark: #1a1714;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --warm-gray: #8c7b6b;
  --mid: #3d3530;
  --white: #fdfaf5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--dark);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(201,169,110,0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

nav.scrolled .nav-logo { color: var(--dark); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.85);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

nav.scrolled .nav-links a { color: var(--warm-gray); }
nav.scrolled .nav-links a:hover { color: var(--dark); }

.nav-book {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s !important;
}

.nav-book:hover {
  background: var(--gold);
  color: var(--dark) !important;
}

.nav-book::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

nav.scrolled .hamburger span { background: var(--dark); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1714 0%, #2d2520 50%, #1a1714 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.05) 0%, transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 2rem;
  animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

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

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(253,250,245,0.5);
  font-weight: 300;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.hero-cta {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  font-family: 'Jost', sans-serif;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(253,250,245,0.3);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: border-color 0.3s, background 0.3s;
  font-family: 'Jost', sans-serif;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253,250,245,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS ── */
section { padding: 7rem 4rem; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

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

/* ── INTRO / ABOUT STRIP ── */
.intro {
  background: var(--dark);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-text .section-title { color: var(--white); }
.intro-text .section-label { color: var(--gold); }

.intro-text p {
  color: rgba(253,250,245,0.65);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.intro-image {
  position: relative;
}

.intro-image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--mid);
  position: relative;
  overflow: hidden;
}

.intro-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.intro-image::before {
  content: '';
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  right: 1.5rem; bottom: 1.5rem;
  border: 1px solid rgba(201,169,110,0.3);
  z-index: 0;
}

.intro-image-frame { position: relative; z-index: 1; }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  border-top: 1px solid rgba(201,169,110,0.3);
  padding-top: 1rem;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.4);
  margin-top: 0.25rem;
}

/* ── SERVICES GRID ── */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}

.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--dark); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(253,250,245,0.5); }
.service-card:hover .service-num { color: rgba(201,169,110,0.2); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.service-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--warm-gray);
  transition: color 0.3s;
}

/* ── PORTFOLIO PREVIEW ── */
.portfolio-preview {
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 4rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--mid);
}

.portfolio-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.6s ease;
  display: block;
}

.portfolio-item:first-child img { aspect-ratio: unset; }

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }

.portfolio-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}

.portfolio-view-all {
  text-align: center;
  margin-top: 3rem;
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--dark);
  text-align: center;
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  position: absolute;
  top: -4rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(201,169,110,0.05);
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.5;
  position: relative;
}

.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BOOKING CTA ── */
.booking-cta {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  padding: 7rem 4rem;
}

.booking-cta-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}

.booking-cta-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-left: 2px solid var(--gold);
}

.booking-detail-icon {
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.booking-detail-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.booking-detail-text span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 5rem 4rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(253,250,245,0.4);
  line-height: 1.8;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(253,250,245,0.5);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col ul li a:hover { color: var(--gold); }

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(253,250,245,0.25);
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 45vh;
  min-height: 350px;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201,169,110,0.1) 0%, transparent 60%);
}

.page-hero-content { position: relative; }

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

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

.page-hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.4);
  margin-top: 0.75rem;
}

/* ── PORTFOLIO PAGE ── */
.portfolio-page { padding: 5rem 4rem; }

.portfolio-categories {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.cat-btn {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(26,23,20,0.2);
  background: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  color: var(--warm-gray);
  transition: all 0.3s;
}

.cat-btn:hover, .cat-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.portfolio-subjects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.subject-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--mid);
  text-decoration: none;
  display: block;
}

.subject-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  background: linear-gradient(135deg, var(--mid), var(--dark));
}

.subject-card:hover .subject-card-img { transform: scale(1.06); }

.subject-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.9) 0%, rgba(26,23,20,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s;
}

.subject-card:hover .subject-card-overlay {
  background: linear-gradient(to top, rgba(26,23,20,0.95) 0%, rgba(26,23,20,0.4) 60%, rgba(201,169,110,0.1) 100%);
}

.subject-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.subject-card-count {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.subject-card-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s;
}

.subject-card:hover .subject-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ── GALLERY MODAL ── */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,23,20,0.97);
  overflow-y: auto;
}

.gallery-modal.open { display: block; }

.gallery-modal-header {
  position: sticky;
  top: 0;
  background: rgba(26,23,20,0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.gallery-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
}

.gallery-modal-close {
  background: none;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  width: 44px; height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-close:hover {
  background: var(--gold);
  color: var(--dark);
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
}

.gallery-modal-item {
  aspect-ratio: 1;
  background: var(--mid);
  overflow: hidden;
  cursor: pointer;
}

.gallery-modal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.gallery-modal-item:hover img { transform: scale(1.05); }

/* Placeholder for empty gallery */
.gallery-placeholder {
  grid-column: 1 / -1;
  padding: 6rem;
  text-align: center;
}

.gallery-placeholder p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: rgba(253,250,245,0.3);
  font-style: italic;
}

/* ── ABOUT PAGE ── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
  padding: 7rem 4rem;
}

.about-image-wrap {
  position: sticky;
  top: 120px;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  background: var(--mid);
}

.about-img-accent {
  width: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--cream);
  margin-top: -4rem;
  margin-left: auto;
  border: 6px solid var(--white);
  position: relative;
  z-index: 1;
}

.about-text .section-title { margin-bottom: 2rem; }

.about-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}

.about-values {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-value {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about-value-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-value-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.about-value-text span {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── PRICING PAGE ── */
.pricing-page { padding: 5rem 4rem; background: var(--cream); }

.pricing-intro {
  max-width: 600px;
  margin: 0 auto 5rem;
  text-align: center;
}

.pricing-intro p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-top: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
}

.pricing-card.featured {
  background: var(--dark);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-includes li {
  color: var(--white);
}

.pricing-card.featured .pricing-includes li::before { color: var(--gold); }

.pricing-badge {
  position: absolute;
  top: -1px; right: 2rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  font-weight: 500;
}

.pricing-name {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-price sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 0.5rem;
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream);
}

.pricing-card.featured .pricing-desc { border-color: rgba(201,169,110,0.2); color: rgba(253,250,245,0.5); }

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.pricing-includes li {
  font-size: 0.85rem;
  color: var(--warm-gray);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.pricing-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pricing-note {
  background: var(--cream);
  padding: 2rem;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-note p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

.pricing-note strong { color: var(--dark); }

/* ── CONTACT PAGE ── */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 200px);
}

.contact-info {
  background: var(--dark);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .section-title { color: var(--white); }

.contact-info p {
  font-size: 0.9rem;
  color: rgba(253,250,245,0.5);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: rgba(253,250,245,0.6);
}

.contact-form-wrap {
  background: var(--white);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(26,23,20,0.15);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 400;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--gold); color: var(--dark); }

/* ── UTILITIES ── */
.container { max-width: 1400px; margin: 0 auto; }
.text-center { text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.5rem 2rem; }
  nav.scrolled { padding: 1rem 2rem; }
  section { padding: 5rem 2rem; }
  .intro { grid-template-columns: 1fr; gap: 4rem; padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-subjects { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
  .booking-cta { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-content { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  .about-image-wrap { position: static; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-info { padding: 5rem 2rem; }
  .contact-form-wrap { padding: 5rem 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-subjects { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item:first-child { grid-column: span 2; }
  .gallery-modal-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .page-hero { padding: 3rem 2rem; }
  .portfolio-page { padding: 3rem 2rem; }
  .pricing-page { padding: 3rem 2rem; }
  .gallery-modal-header { padding: 1.5rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial { padding: 5rem 2rem; }
}

@media (max-width: 480px) {
  .portfolio-subjects { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 3rem; }
}

/* ── FADE IN ON SCROLL ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
