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

:root {
  --bg:        #F9F7F4;
  --bg-alt:    #F0EBE3;
  --white:     #FFFFFF;
  --text:      #0D0D0D;
  --text-mid:  #4A4A4A;
  --text-muted:#9A9490;
  --border:    #E5DDD5;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1160px;
  --pad-section: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow { max-width: 600px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-sm   { padding: 9px 20px; font-size: 11px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary  { background: var(--text); color: var(--white); border-color: var(--text); }
.btn-primary:hover { background: #333; border-color: #333; }

.btn-ghost {
  background: transparent; color: var(--text);
  border-color: transparent; padding-left: 0;
  font-size: 14px; text-transform: none; letter-spacing: 0; font-weight: 400;
}
.btn-ghost:hover { opacity: 0.5; }

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

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(249, 247, 244, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex; align-items: center;
  gap: 36px; list-style: none;
}
.nav-links > li > a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links > li > a:not(.btn):hover { color: var(--text); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform 0.28s, opacity 0.28s;
}
.nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO — split layout
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 100vh;
  padding-top: 64px; /* nav height */
}

.hero-photo-col {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-photo-placeholder {
  width: 100%; height: 100%;
  min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; background: var(--bg-alt);
}
.hero-photo-placeholder p { font-size: 14px; color: var(--text-mid); }
.hero-photo-placeholder span { font-size: 12px; color: var(--text-muted); font-family: monospace; }

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

.hero-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-mid);
  margin-bottom: 40px;
}
.hero-tagline em {
  font-style: italic;
  color: var(--text);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hstat-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.hstat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-socials {
  display: flex;
  gap: 20px;
}

.hero-socials a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.hero-socials a:hover { color: var(--text); }

/* =============================================
   BRANDS
   ============================================= */
.brands {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.brands-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 28px;
}

.brands-grid span {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.01em;
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: var(--pad-section) 0; }
.section-alt { background: var(--bg-alt); }

.section-header { margin-bottom: 48px; }

.section-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   PORTFOLIO — horizontal scroll
   ============================================= */
.video-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 32px 4px;
  cursor: grab;
}
.video-scroll-wrap:active { cursor: grabbing; }
.video-scroll-wrap::-webkit-scrollbar { display: none; }

.video-scroll {
  display: flex;
  gap: 16px;
}

.video-card {
  flex: 0 0 260px;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.video-wrapper {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 vertical */
  height: 0;
  overflow: hidden;
  background: var(--bg-alt);
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

.video-meta {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}

.video-tag {
  display: block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.video-type {
  font-size: 13px;
  color: var(--text-mid);
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.about-photo-placeholder p  { font-size: 14px; color: var(--text-mid); }
.about-photo-placeholder span { font-size: 12px; color: var(--text-muted); font-family: monospace; }

.about-lead {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  border-left: 2px solid var(--text);
  padding-left: 20px;
  margin: 28px 0 !important;
  line-height: 1.55 !important;
}

.formats-block { margin-top: 32px; }

.formats-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.formats-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.formats-tags span {
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  background: var(--white);
}

/* =============================================
   WHAT MAKES ME DIFFERENT
   ============================================= */
.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.unique-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
}

.unique-item h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  color: var(--text);
  margin-bottom: 10px; line-height: 1.2;
}

.unique-item p {
  font-size: 14px; color: var(--text-mid); line-height: 1.75;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.review-snap {
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--white);
}
.review-snap:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
}
.review-snap img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-height: 90vh;
  max-width: 420px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 24px;
  cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* =============================================
   PACKAGES
   ============================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.package {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  gap: 24px; position: relative;
}

.package-featured { border-color: var(--text); }

.package-badge {
  position: absolute;
  top: -1px; left: 32px;
  background: var(--text); color: var(--white);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px;
}

.package-header { display: flex; flex-direction: column; gap: 6px; }
.package-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}

.package-price {
  font-family: var(--serif);
  font-size: 48px; font-weight: 300; line-height: 1;
  color: var(--text);
}
.package-price span {
  font-family: var(--sans);
  font-size: 14px; color: var(--text-muted); font-weight: 400;
}

.package-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px; flex: 1;
}
.package-list li {
  font-size: 14px; color: var(--text-mid);
  padding-left: 18px; position: relative; line-height: 1.5;
}
.package-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--border);
}

.package-for { font-size: 12px; font-style: italic; color: var(--text-muted); }

.packages-note {
  text-align: center; font-size: 14px; color: var(--text-muted);
}
.packages-note a {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.packages-note a:hover { border-color: var(--text); }

/* =============================================
   CONTACT
   ============================================= */
.contact-form {
  display: flex; flex-direction: column;
  gap: 20px; margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid);
}

input, select, textarea {
  font-family: var(--sans); font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white); color: var(--text);
  outline: none; border-radius: 0;
  -webkit-appearance: none; appearance: none;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--text); }
input::placeholder, textarea::placeholder { color: #CCC7BE; }
textarea { resize: vertical; min-height: 100px; }

.contact-alt {
  text-align: center; font-size: 14px; color: var(--text-muted);
}
.contact-alt a { color: var(--text); border-bottom: 1px solid var(--border); }
.contact-alt a:hover { border-color: var(--text); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--white);
}

.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

.footer-logo { font-family: var(--serif); font-size: 17px; color: var(--text); }

.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--text-muted); transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 12px; color: var(--text-muted); }

/* =============================================
   FADE-UP ANIMATION
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   ABOUT LINKS
   ============================================= */
.about-links { display: flex; gap: 24px; margin-top: 32px; }
.about-link {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.about-link:hover { border-color: var(--text); }

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 50% 50%; }
  .hero-text-col { padding: 60px 48px; }
  .about-grid { grid-template-columns: 320px 1fr; gap: 56px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --pad-section: 64px; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 28px 32px; gap: 20px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-photo-col {
    height: 70vw;
    min-height: 300px;
    max-height: 480px;
  }
  .hero-text-col { padding: 48px 24px; }
  .hero-title { font-size: 52px; }
  .hero-stats { gap: 20px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Grids */
  .unique-grid    { grid-template-columns: 1fr; }
  .packages-grid  { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
  .review-snap    { height: 150px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .testimonial { padding: 28px; }
  .container { padding: 0 20px; }

  .video-scroll-wrap { padding: 0 20px 4px; }
}

/* =============================================
   RESPONSIVE — SMALL TABLET (≤ 900px)
   ============================================= */
@media (max-width: 900px) and (min-width: 769px) {
  .unique-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .packages-grid  { grid-template-columns: 1fr; max-width: 480px; }
}
