/* ============================================
   Studio TR — Landing Page
   Pastel premium palette for Class A audience
   ============================================ */

:root {
  --bg: #F8F5F1;
  --bg-alt: #F0EBE4;
  --bg-card: #FFFFFF;
  --bg-featured: #F5EDE3;
  --bg-featured-soft: #FAF6F0;
  --bg-featured-border: #D4B896;

  --text: #2C2825;
  --text-muted: #7A7268;
  --text-light: #A89F94;

  --accent: #B8956C;
  --accent-light: #D4C4A8;
  --accent-pastel: #E8DDD0;

  --pastel-rose: #F2E4E1;
  --pastel-sage: #E4EBE4;
  --pastel-lavender: #E8E4F0;
  --pastel-peach: #F5E8DF;
  --pastel-mist: #E8EDF2;

  --silver: #C8C8C8;
  --gold: #C9A96E;
  --diamond: #A8B8C8;

  --border: rgba(44, 40, 37, 0.08);
  --shadow: 0 4px 24px rgba(44, 40, 37, 0.06);
  --shadow-lg: 0 12px 48px rgba(44, 40, 37, 0.1);
  --shadow-featured: 0 8px 40px rgba(184, 149, 108, 0.18);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #A68455;
  border-color: #A68455;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

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

.btn-outline:hover {
  background: var(--accent-pastel);
  border-color: var(--accent);
}

.btn-block { width: 100%; }

.btn-nav {
  padding: 10px 20px;
  font-size: 12px;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 245, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

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

.nav-links a:not(.btn) {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.nav-links a:not(.btn):hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--pastel-rose) 0%, transparent 40%),
    linear-gradient(225deg, var(--pastel-sage) 0%, transparent 40%),
    linear-gradient(315deg, var(--pastel-lavender) 0%, transparent 50%),
    var(--bg);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/estudio/hero-studio-tr.png') center/cover no-repeat;
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

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

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-circle {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 28px;
  border: 1px solid var(--accent-light);
  border-radius: 50px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
}

.section-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.section-cta p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ---- Portfolio Masonry ---- */
.portfolio-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-pastel);
  border-color: var(--accent-light);
  color: var(--text);
}

.masonry {
  columns: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.masonry-item.hidden {
  display: none;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-item::after {
  content: attr(data-category);
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.masonry-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Studio ---- */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.studio-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.studio-text > p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-list {
  margin-bottom: 32px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 15px;
}

.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  top: 4px;
}

.studio-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.studio-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.studio-img--large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.studio-img--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.studio-img:hover img {
  transform: scale(1.03);
}

/* ---- Packages ---- */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.package-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.package-card--featured {
  background: linear-gradient(165deg, var(--bg-featured-soft) 0%, var(--bg-featured) 100%);
  color: var(--text);
  border: 2px solid var(--bg-featured-border);
  box-shadow: var(--shadow-featured);
  transform: scale(1.03);
}

.package-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 48px rgba(184, 149, 108, 0.22);
}

.package-card--featured .package-meta,
.package-card--featured .tier-extra,
.package-card--featured .package-features li {
  color: var(--text-muted);
}

.package-card--featured .tier {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(212, 184, 150, 0.35);
}

.package-card--featured .tier--highlight {
  background: var(--pastel-peach);
  border-color: var(--accent);
}

.package-card--featured .package-footer-note {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(212, 184, 150, 0.25);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
}

.package-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.package-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.package-icon--silver {
  background: var(--pastel-mist);
  color: #8A9098;
  border: 2px solid var(--silver);
}

.package-icon--gold {
  background: rgba(201, 169, 110, 0.2);
  color: var(--gold);
  border: 2px solid var(--gold);
}

.package-icon--diamond {
  background: var(--pastel-lavender);
  color: #7A8A9A;
  border: 2px solid var(--diamond);
  font-size: 16px;
}

.package-header h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.package-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.package-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.tier {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
}

.tier--highlight {
  background: var(--pastel-peach);
  border-color: var(--accent-light);
}

.tier-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  grid-row: span 2;
  align-self: center;
}

.tier-photos {
  font-size: 14px;
  color: var(--text-muted);
}

.tier-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.tier-extra {
  grid-column: 2;
  font-size: 12px;
  color: var(--text-light);
}

.package-features {
  margin-bottom: 20px;
}

.package-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.tag-new {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.package-footer-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
  padding: 12px;
  background: var(--pastel-sage);
  border-radius: var(--radius);
}


/* ---- Why Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  margin-bottom: 32px;
}

.why-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.why-icon {
  color: var(--accent);
  font-size: 12px;
  margin-top: 6px;
  flex-shrink: 0;
}

.why-list strong {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.why-list p {
  font-size: 15px;
  color: var(--text-muted);
}

.why-cta-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.why-cta-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 16px;
}

.why-cta-card p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ---- Booking Form ---- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.booking-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  margin-bottom: 16px;
}

.booking-info > p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-item a {
  font-size: 16px;
  color: var(--accent);
}

.contact-item a:hover {
  color: #A68455;
}

.booking-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(184, 149, 108, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

input.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-feedback {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.form-feedback--error {
  background: #FDF0F0;
  border: 1px solid #E8B4B4;
  color: #8A4040;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ---- Policies ---- */
.policy-layout {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.policy-alert__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-peach);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
}

.policy-alert p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.policy-alert strong {
  color: var(--text);
  font-weight: 600;
}

.policy-block {
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.policy-block:hover {
  box-shadow: var(--shadow);
}

.policy-block--featured {
  background: linear-gradient(135deg, #C9AD86 0%, #B8956C 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-featured);
}

.policy-block--light {
  background: var(--bg-card);
}

.policy-block--sage {
  background: #EEF3EE;
  border-color: rgba(120, 140, 120, 0.15);
}

.policy-block--peach {
  background: #F8F0E8;
  border-color: rgba(184, 149, 108, 0.2);
}

.policy-block__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.policy-block--featured .policy-block__header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.policy-block__number {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.8;
}

.policy-block--featured .policy-block__number {
  color: rgba(255, 255, 255, 0.7);
}

.policy-block__header h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.policy-block--featured .policy-block__header h3 {
  color: #fff;
}

.policy-block__body--payment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.policy-payment-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-payment-card--wide {
  grid-column: span 2;
}

.policy-payment-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.policy-payment-card__value {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.policy-payment-card__desc {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.policy-payment-card__desc strong {
  font-weight: 600;
}

.policy-dl {
  margin: 0;
}

.policy-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.policy-row:last-child {
  border-bottom: none;
}

.policy-block--sage .policy-row {
  border-bottom-color: rgba(120, 140, 120, 0.12);
}

.policy-block--peach .policy-row {
  border-bottom-color: rgba(184, 149, 108, 0.15);
}

.policy-row dt {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.5;
}

.policy-row dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-align: right;
  max-width: 50%;
  line-height: 1.5;
  margin: 0;
}

.policy-row--highlight {
  background: rgba(184, 149, 108, 0.08);
  margin: 0 -16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border-bottom: none;
}

.policy-row--highlight + .policy-row {
  border-top: none;
}

.policy-row--highlight dt,
.policy-row--highlight dd {
  color: var(--text);
}

.policy-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.policy-block--sage .policy-list li {
  border-bottom-color: rgba(120, 140, 120, 0.12);
}

.policy-block--peach .policy-list li {
  border-bottom-color: rgba(184, 149, 108, 0.15);
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

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

.policy-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: rgba(184, 149, 108, 0.15);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  border-radius: 4px;
  vertical-align: middle;
}

.policy-footnote {
  margin: 20px 0 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}

.policy-block--light .policy-footnote {
  background: var(--bg);
}

.policy-footnote--accent {
  background: var(--pastel-peach);
  border: 1px solid var(--accent-light);
  font-style: normal;
  text-align: center;
}

.policy-footnote strong {
  color: var(--text);
  font-weight: 600;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item summary {
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- Footer ---- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}


.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-cta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 37, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-sage);
  color: #5A8A5A;
  font-size: 28px;
  border-radius: 50%;
}

.modal-content h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .packages {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .package-card--featured {
    transform: none;
    order: -1;
  }

  .package-card--featured:hover {
    transform: translateY(-4px);
  }

  .studio-grid,
  .why-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .section {
    padding: 72px 0;
  }

  .masonry {
    columns: 1;
  }

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

  .policy-block {
    padding: 24px 20px;
  }

  .policy-block__body--payment {
    grid-template-columns: 1fr;
  }

  .policy-payment-card--wide {
    grid-column: span 1;
  }

  .policy-row {
    flex-direction: column;
    gap: 6px;
  }

  .policy-row dd {
    text-align: left;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-cta {
    grid-column: span 2;
    justify-content: center;
  }

  .studio-gallery {
    grid-template-columns: 1fr;
  }

  .studio-img--large,
  .studio-img--wide {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 16/10;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

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

  .footer-cta {
    grid-column: span 1;
  }

  .booking-form {
    padding: 24px;
  }
}
