/* ============================================================
   ALLWAVES CO. - shared stylesheet
   linked from every page in the site
   ============================================================ */

:root {
  --ivory:    #F4EFE6;   /* warm sand neutral */
  --paper:    #FBF8F2;   /* lightest cream */
  --mist:     #E5EBF0;   /* cool light blue-gray */
  --sky:      #B7CBD6;   /* soft sky blue */
  --wave:     #6E94A8;   /* muted mid-blue */
  --ocean:    #2F5872;   /* deep teal-blue */
  --abyss:    #14304A;   /* deepest navy */
  --brass:    #B89968;   /* subtle warm metallic accent */
  --coral:    #CB7656;   /* warm sunset coral - accent pop */
  --peach:    #EDB89B;   /* soft peach */
  --gold:     #D9A86B;   /* warm sand gold */
  --ink:      #1A2530;
  --shadow:   0 14px 40px rgba(20, 48, 74, 0.10);
  --shadow-sm: 0 4px 14px rgba(20, 48, 74, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--abyss);
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 300; color: var(--wave); }

a { color: var(--ocean); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--abyss); }

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

.container { width: min(1180px, 90%); margin: 0 auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 48, 74, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity .2s ease;
}
.logo img {
  height: 90px;
  width: auto;
  display: block;
}
.logo:hover { opacity: 0.8; }
.logo em { font-style: italic; color: var(--wave); font-weight: 300; }
.logo-tag {
  display: block;
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--wave);
  margin-top: 2px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--abyss);
  font-weight: 400;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--brass);
}
.nav-links a.active { color: var(--ocean); }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--abyss); color: var(--paper); }
.btn-primary:hover { background: var(--ocean); color: var(--paper); }
.btn-outline { background: transparent; color: var(--abyss); border: 1px solid var(--abyss); padding: 12px 27px; }
.btn-outline:hover { background: var(--abyss); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--abyss); }
.btn-light:hover { background: var(--ivory); color: var(--abyss); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--abyss); cursor: pointer; }

/* ============================================================
   HERO (home only)
   ============================================================ */
.hero {
  position: relative;
  padding: 110px 0 130px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--mist) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: -40px; left: 0; right: 0;
  height: 120px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'><path d='M0,60 C300,90 600,30 900,60 C1050,75 1150,50 1200,60 L1200,120 L0,120 Z' fill='%23B7CBD6' opacity='0.35'/><path d='M0,75 C300,100 600,50 900,75 C1050,90 1150,65 1200,75 L1200,120 L0,120 Z' fill='%236E94A8' opacity='0.25'/></svg>") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--peach);
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}
.hero p.lede {
  font-size: 1.1rem;
  color: var(--ocean);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* hero artwork - refined photo arrangement */
.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin-left: auto;
}
.frame {
  position: absolute;
  background: var(--paper);
  padding: 14px 14px 50px;
  box-shadow: var(--shadow);
  transition: transform .4s ease;
}
.frame .photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sky), var(--wave));
  position: relative;
  overflow: hidden;
}
.frame .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.35), transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(20, 48, 74, 0.15));
}
.frame.f1 { width: 58%; top: 5%; left: 0; transform: rotate(-3deg); }
.frame.f1 .photo { background: linear-gradient(135deg, #aac4d3, #5a7e94); }
.frame.f2 { width: 50%; bottom: 8%; right: 5%; transform: rotate(4deg); }
.frame.f2 .photo { background: linear-gradient(135deg, #edb89b, #cb7656); }
.frame.f3 { width: 42%; top: 38%; right: 10%; transform: rotate(-2deg); z-index: 2; }
.frame.f3 .photo { background: linear-gradient(135deg, #c5d6df, #2f5872); }
.frame:hover { transform: translateY(-6px) rotate(0deg); }

/* ============================================================
   PAGE HERO (every non-home page)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--mist) 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  bottom: -40px; left: 0; right: 0;
  height: 100px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'><path d='M0,60 C300,90 600,30 900,60 C1050,75 1150,50 1200,60 L1200,120 L0,120 Z' fill='%23B7CBD6' opacity='0.3'/><path d='M0,75 C300,100 600,50 900,75 C1050,90 1150,65 1200,75 L1200,120 L0,120 Z' fill='%236E94A8' opacity='0.2'/></svg>") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p.lede {
  font-size: 1.1rem;
  color: var(--ocean);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  background: var(--abyss);
  color: var(--paper);
  padding: 30px 0;
  text-align: center;
}
.divider-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--sky);
}
.divider-text span { color: var(--coral); margin: 0 18px; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 130px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.section-head h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 22px;
}
.section-head p { color: var(--ocean); font-size: 1.05rem; line-height: 1.7; }

/* ============================================================
   EXPLORE GRID (home page)
   ============================================================ */
.explore { background: var(--paper); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.explore-card {
  display: block;
  position: relative;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--sky);
  color: var(--paper);
  transition: transform .4s ease;
}
.explore-card:hover { transform: translateY(-4px); color: var(--paper); }
.explore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 48, 74, 0.7) 100%);
  z-index: 1;
}
.explore-card:nth-child(1) { background: linear-gradient(135deg, #aac4d3, #2f5872); }
.explore-card:nth-child(2) { background: linear-gradient(135deg, #edb89b, #cb6f4a); }
.explore-card:nth-child(3) { background: linear-gradient(135deg, #c5d6df, #6e94a8); }
.explore-card:nth-child(4) { background: linear-gradient(135deg, #f0d9a8, #c79a52); }
.explore-card .label {
  position: absolute;
  top: 28px;
  left: 32px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  z-index: 2;
  opacity: 0.85;
}
.explore-card h3 {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: 32px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--paper);
  z-index: 2;
}
.explore-card .arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--paper);
  z-index: 2;
  transition: transform .3s ease;
}
.explore-card:hover .arrow { transform: translateX(6px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-art {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #b7cbd6, #edb89b);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 50%),
    linear-gradient(180deg, transparent 50%, rgba(20, 48, 74, 0.25));
}
.about-art-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: var(--paper);
  z-index: 2;
}
.about-art-overlay .small {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
}
.about-art-overlay .quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.3;
}
.about h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 28px;
}
.about p { color: var(--ocean); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.8; }

/* tagline pull */
.tagline-block {
  background: var(--abyss);
  color: var(--paper);
  padding: 110px 0;
  text-align: center;
}
.tagline-block .tagline-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.tagline-block .tagline-mark span { color: var(--peach); }
.tagline-block p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.75);
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ============================================================
   EVENTS - short cards (used on home & events)
   ============================================================ */
.events { background: var(--ivory); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.event-card { text-align: left; padding: 8px 0; }
.event-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--coral);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sky);
}
.event-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.event-card p { font-size: 0.95rem; color: var(--ocean); line-height: 1.7; }

/* events page - long blocks */
.event-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 130px;
}
.event-block:last-child { margin-bottom: 0; }
.event-block.reverse { grid-template-columns: 1.1fr 1fr; direction: rtl; }
.event-block.reverse > * { direction: ltr; }
.event-block .photo-area {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sky), var(--ocean));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.event-block:nth-of-type(1) .photo-area { background: linear-gradient(135deg, #aac4d3, #2f5872); }
.event-block:nth-of-type(2) .photo-area { background: linear-gradient(135deg, #edb89b, #cb7656); }
.event-block:nth-of-type(3) .photo-area { background: linear-gradient(135deg, #6e94a8, #14304a); }
.event-block:nth-of-type(4) .photo-area { background: linear-gradient(135deg, #f0d9a8, #c79a52); }
.event-block .photo-area::before {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
  opacity: 0.7;
  letter-spacing: 0.05em;
}
.event-block .copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 20px;
}
.event-block .copy p {
  color: var(--ocean);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.event-block .copy ul {
  list-style: none;
  margin: 24px 0;
}
.event-block .copy ul li {
  padding-left: 24px;
  position: relative;
  color: var(--ocean);
  margin-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1.6;
}
.event-block .copy ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--brass);
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { background: var(--paper); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.package {
  background: var(--ivory);
  padding: 50px 40px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--sky);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.package:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package.featured { background: var(--abyss); color: var(--paper); border-top-color: var(--coral); }
.package.featured h3, .package.featured .price { color: var(--paper); }
.package.featured .duration { color: var(--sky); }
.package.featured ul li { color: rgba(255,255,255,0.85); border-color: rgba(183, 203, 214, 0.2); }
.package.featured .price small { color: rgba(255,255,255,0.6); }
.package .tag {
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--coral);
  color: var(--paper);
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.package h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--abyss);
  margin-bottom: 6px;
}
.package .duration {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--wave);
  margin-bottom: 28px;
}
.package .price {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 2.6rem;
  color: var(--abyss);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.package .price small {
  font-size: 0.85rem;
  color: var(--wave);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}
.package ul { list-style: none; margin: 32px 0 36px; }
.package ul li {
  padding: 12px 0;
  color: var(--ocean);
  border-bottom: 1px solid rgba(110, 148, 168, 0.18);
  font-size: 0.93rem;
  font-weight: 400;
  line-height: 1.5;
}
.package ul li:last-child { border-bottom: none; }
.package .btn { width: 100%; text-align: center; }
.package.featured .btn-outline { color: var(--paper); border-color: var(--paper); }
.package.featured .btn-outline:hover { background: var(--paper); color: var(--abyss); }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--wave);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 0.98rem;
}

/* included strip on packages page */
.included {
  background: var(--ivory);
  padding: 100px 0;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.included-item {
  border-top: 1px solid var(--sky);
  padding-top: 24px;
}
.included-item h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--abyss);
  margin-bottom: 10px;
}
.included-item p {
  color: var(--ocean);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--mist); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-grid.large { grid-auto-rows: 240px; }
.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  text-align: center;
  padding: 12px;
  letter-spacing: 0.03em;
  transition: transform .4s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item .placeholder-text { opacity: 0.85; }
.gallery-item:nth-child(7n+1) { background: linear-gradient(135deg, #8aa9bb, #2f5872); }
.gallery-item:nth-child(7n+2) { background: linear-gradient(135deg, #edb89b, #cb7656); }
.gallery-item:nth-child(7n+3) { background: linear-gradient(135deg, #aac4d3, #5a7e94); }
.gallery-item:nth-child(7n+4) { background: linear-gradient(135deg, #14304a, #2f5872); }
.gallery-item:nth-child(7n+5) { background: linear-gradient(135deg, #f0d9a8, #d9a86b); color: var(--abyss); }
.gallery-item:nth-child(7n+6) { background: linear-gradient(135deg, #6e94a8, #14304a); }
.gallery-item:nth-child(7n+7) { background: linear-gradient(135deg, #cb7656, #a65238); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(110, 148, 168, 0.25); }
.faq-item:first-child { border-top: 1px solid rgba(110, 148, 168, 0.25); }
.faq-item summary {
  padding: 26px 0;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--abyss);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--coral);
  transition: transform .25s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--ocean); }
.faq-item p {
  padding: 0 0 26px;
  color: var(--ocean);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 90%;
}

/* ============================================================
   CONTACT / BOOK
   ============================================================ */
.book {
  background: var(--abyss);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.book::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'><path d='M0,40 C300,10 600,55 900,30 C1050,18 1150,40 1200,30 L1200,0 L0,0 Z' fill='%23FBF8F2' opacity='1'/></svg>") center top / 100% 100% no-repeat;
  pointer-events: none;
}
.book .container { position: relative; z-index: 1; }
.book .section-head { padding-top: 40px; }
.book .section-head h2 { color: var(--paper); }
.book .section-head h2 em { color: var(--brass); }
.book .section-head p { color: rgba(255,255,255,0.75); }
.book .eyebrow { color: var(--peach); border-color: rgba(237, 184, 155, 0.45); }

.book-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
  padding: 56px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--abyss);
  margin-bottom: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
input, select, textarea {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--sky);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--abyss);
}
textarea { resize: vertical; min-height: 110px; padding: 14px 0; }
.book-form .btn { width: 100%; padding: 18px; font-size: 0.85rem; margin-top: 12px; }

/* contact page split */
.contact-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-info {
  background: var(--paper);
  color: var(--ink);
  padding: 56px 44px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--abyss);
  margin-bottom: 10px;
}
.contact-info .sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--wave);
  margin-bottom: 28px;
  font-size: 1.02rem;
}
.contact-info ul { list-style: none; }
.contact-info ul li {
  padding: 16px 0;
  border-bottom: 1px solid var(--sky);
}
.contact-info ul li:last-child { border-bottom: none; }
.contact-info .label-line {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wave);
  margin-bottom: 4px;
  display: block;
}
.contact-info a { color: var(--abyss); font-size: 1rem; }
.contact-info a:hover { color: var(--ocean); }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--ivory);
  padding: 130px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p {
  color: var(--ocean);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--abyss);
  color: var(--paper);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
footer .logo { margin-bottom: 14px; }
footer .logo img { height: 115px; filter: brightness(0) invert(1); }
footer .logo em { color: var(--sky); }
footer .footer-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: block;
  letter-spacing: 0.02em;
}
footer p { color: rgba(255, 248, 242, 0.7); font-size: 0.95rem; line-height: 1.7; max-width: 360px; }
footer h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul a { color: rgba(255, 248, 242, 0.85); font-size: 0.95rem; }
footer ul a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(255, 248, 242, 0.5);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
}


/* Photo grids - custom layouts for real photos */
.gallery-grid.photos-2x2 {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 520px;
}
.gallery-grid.photos-row3 {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 420px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  /* Hide decorative polaroid frames on mobile */
  .hero-art { display: none; }

  /* Photo grids stack to single column on mobile */
  .gallery-grid.photos-2x2,
  .gallery-grid.photos-row3 {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-grid.photos-2x2 .gallery-item,
  .gallery-grid.photos-row3 .gallery-item {
    aspect-ratio: 4/5;
    width: 100%;
  }

  .logo img { height: 70px; }
  footer .logo img { height: 90px; }

  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--ivory); flex-direction: column; padding: 28px; border-bottom: 1px solid rgba(20,48,74,0.1); gap: 22px; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav .btn { padding: 8px 16px; font-size: 0.72rem; letter-spacing: 0.06em; }
  .hero { padding: 70px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-art { max-width: 380px; margin: 0 auto; }
  .page-hero { padding: 70px 0 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-art { max-width: 480px; margin: 0 auto; }
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .event-block, .event-block.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; margin-bottom: 80px; }
  .event-block .photo-area { max-width: 480px; }
  .packages-grid { grid-template-columns: 1fr; gap: 28px; }
  .package { padding: 40px 32px; }
  .gallery-grid, .gallery-grid.large { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .book-form { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .explore-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { padding: 40px 28px; }
  section { padding: 90px 0; }
}
