/* Page-specific styles for landing & sub-pages */

/* ---------- Hero (editorial — default) ---------- */
.hero-editorial {
  padding: clamp(48px, 7vw, 100px) 0 clamp(64px, 8vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-headline {
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.98;
  font-weight: 400;
  margin-top: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 28px;
  max-width: 50ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(28px, 5vw, 64px);
  justify-content: flex-start;
}
.hero-facts li {
  display: grid;
  gap: 6px;
}
.hero-facts .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-style: italic;
  line-height: 1;
  color: var(--ink);
}
.hero-facts li > span:last-child {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-art {
  position: relative;
}
.hero-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(35, 31, 26, 0.35);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp {
  position: absolute;
  bottom: -34px;
  left: -34px;
  width: 132px;
  height: 132px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 18px;
  box-shadow: 0 20px 40px -20px rgba(35, 31, 26, 0.4);
  border: 1px solid var(--rule);
  transform: rotate(-8deg);
}
.hero-stamp img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Hero (type-led variant) ---------- */
.hero-type-inner {
  text-align: center;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(20px, 3vw, 40px);
}
.hero-type-inner .eyebrow { justify-content: center; margin: 0 auto; }
.hero-type-inner .hero-headline {
  font-size: clamp(72px, 13vw, 200px);
  margin-top: 32px;
}
.hero-type-inner .hero-sub { margin-left: auto; margin-right: auto; }
.hero-type-inner .hero-actions { justify-content: center; }
.hero-image-wide {
  aspect-ratio: 21/9;
  overflow: hidden;
  border-radius: 6px;
}
.hero-image-wide img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero (image-led variant) ---------- */
.hero-image-full {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 6px;
}
.hero-image-full img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(to top, rgba(20,16,12,0.72), rgba(20,16,12,0.15) 60%, transparent);
  color: var(--cream);
}
.hero-headline-on-image {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  font-weight: 400;
  margin-top: 18px;
  color: var(--cream);
}
.hero-headline-on-image em { font-style: italic; color: color-mix(in oklab, var(--terracotta) 80%, white); }
.hero-image-overlay .eyebrow { color: color-mix(in oklab, var(--cream) 80%, transparent); }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 36px 32px;
  display: grid;
  gap: 16px;
  transition: transform 200ms, box-shadow 200ms;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px -28px rgba(35, 31, 26, 0.35);
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
}
.pillar-title {
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
}
.pillar p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Gallery (editorial grid) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(160px, 22vw, 280px);
  gap: 14px;
}
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 6px; position: relative; background: var(--cream-deep); }
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--cream);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  color: var(--ink);
}
/* shapes */
.gallery-grid .g-hero   { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-tall   { grid-column: span 1; grid-row: span 2; }
.gallery-grid .g-wide   { grid-column: span 2; grid-row: span 1; }
.gallery-grid .g-square { grid-column: span 1; grid-row: span 1; }

@media (max-width: 820px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(140px, 38vw, 220px);
  }
  .gallery-grid .g-hero   { grid-column: span 2; grid-row: span 2; }
  .gallery-grid .g-tall   { grid-column: span 1; grid-row: span 2; }
  .gallery-grid .g-wide   { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .g-square { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }
  .gallery-grid figure { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 3/2; }
  .gallery-grid .g-hero { aspect-ratio: 2/3; }
}

.amenities {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}
@media (max-width: 760px) {
  .amenities { grid-template-columns: 1fr; }
}
.amenities h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
}
.amenities ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  font-size: 15px;
}
@media (max-width: 760px) { .amenities ul { grid-template-columns: 1fr 1fr; } }
.amenities li {
  padding-left: 18px;
  position: relative;
}
.amenities li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.amenities li.soon {
  color: var(--ink-mute);
}
.amenities .soon-list li::before {
  color: var(--ink-mute);
}
.amenities .soon-list li {
  color: var(--ink-soft);
}
.amenities li em {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 13.5px;
}

/* ---------- Pricing teaser ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.plan {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 36px 32px;
  display: grid;
  gap: 18px;
  align-content: start;
  position: relative;
}
.plan-featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.plan-featured .plan-kicker { color: color-mix(in oklab, var(--cream) 70%, transparent); }
.plan-featured p { color: color-mix(in oklab, var(--cream) 85%, transparent); }
.plan-featured ul li::before { color: var(--terracotta); }
.plan-flag {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--terracotta);
  color: var(--cream);
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
}
.plan-flag-perks {
  background: var(--ink);
  color: var(--cream);
}
.plan header { display: grid; gap: 8px; }
.plan-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-amt {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan-per { font-size: 15px; color: inherit; opacity: 0.7; }
.plan p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.plan ul {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid color-mix(in oklab, currentColor 18%, transparent);
  display: grid;
  gap: 10px;
  font-size: 14.5px;
}
.plan ul li {
  padding-left: 18px;
  position: relative;
}
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--terracotta); }
.plan a { justify-self: start; margin-top: 8px; }

/* ---------- Dogs section ---------- */
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .dogs-grid { grid-template-columns: 1fr; } }
.dog { display: grid; gap: 18px; }
.dog-photo {
  border-radius: 6px;
  overflow: hidden;
}
.dog-meta { display: grid; gap: 4px; }
.dog-name { font-size: 30px; font-style: italic; font-weight: 400; color: var(--cream); }
.dog-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.dog-breed {
  font-size: 13.5px;
  color: color-mix(in oklab, var(--cream) 65%, transparent);
}
.dog-note {
  font-size: 15px;
  margin-top: 10px;
  color: color-mix(in oklab, var(--cream) 85%, transparent);
  line-height: 1.6;
}

.policy {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid color-mix(in oklab, var(--cream) 18%, transparent);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 820px) { .policy { grid-template-columns: 1fr; } }
.policy-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 18px;
  counter-reset: pol;
}
.policy-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--cream) 90%, transparent);
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in oklab, var(--cream) 12%, transparent);
}
.policy-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.policy-list span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--terracotta);
}
.policy-list b { color: var(--cream); font-weight: 600; }

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .location-grid { grid-template-columns: 1fr; } }
.address-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
@media (max-width: 520px) { .address-list { grid-template-columns: 1fr; } }
.address-list dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.address-list dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
}
.map-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.map-art { aspect-ratio: 4/4.6; }
.map-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}

/* ---------- Waitlist ---------- */
.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .waitlist-inner { grid-template-columns: 1fr; } }
.waitlist-form {
  background: var(--cream);
  color: var(--ink);
  padding: 36px;
  border-radius: 8px;
  display: grid;
  gap: 16px;
}
.waitlist-form label {
  display: grid;
  gap: 6px;
}
.waitlist-form label span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.waitlist-form input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font: inherit;
  font-size: 18px;
  color: var(--ink);
}
.waitlist-form input:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.waitlist-form button { justify-self: start; margin-top: 10px; }
.waitlist-fineprint {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.waitlist-thanks {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.waitlist-thanks strong { font-family: var(--font-display); font-size: 22px; font-weight: 500; font-style: italic; }
.waitlist-thanks p { font-size: 14.5px; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Follow / Stay-in-touch card ---------- */
.follow-card {
  background: var(--cream);
  color: var(--ink);
  padding: 36px;
  border-radius: 8px;
}
.follow-handle {
  display: flex;
  gap: 14px;
  align-items: center;
}
.follow-divider {
  height: 1px;
  background: var(--rule);
  margin: 28px 0;
}
.follow-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 14.5px;
}
.follow-row-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.follow-row-value a { border-bottom: 1px solid var(--terracotta); color: var(--terracotta); }
.follow-row-value a:hover { color: var(--terracotta-deep); }

/* ---------- Pricing page ---------- */
.page-hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 {
  font-size: clamp(56px, 8vw, 112px);
  margin-top: 20px;
  font-weight: 400;
}
.page-hero h1 em { color: var(--terracotta); font-weight: 400; }
.page-hero p {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 24px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--ink);
}
.compare-table tbody th {
  font-weight: 400;
  color: var(--ink);
  width: 36%;
}
.compare-table .yes { color: var(--terracotta); font-weight: 600; }
.compare-table .no { color: var(--ink-mute); }
.compare-table tr.featured td, .compare-table tr.featured th { background: color-mix(in oklab, var(--terracotta) 7%, transparent); }

/* ---------- Tour page ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: clamp(40px, 6vw, 64px);
}
@media (max-width: 920px) { .tour-grid { grid-template-columns: 1fr; } }
.tour-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 22px;
}
.tour-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 540px) { .tour-form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font: inherit;
  font-size: 17px;
  color: var(--ink);
}
.field textarea { min-height: 80px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.slot {
  padding: 9px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13.5px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: all 120ms;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.slot:hover { border-color: var(--ink); }
.slot.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.slot.disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.day-picker {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 8px;
}
.day-cell {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-family: var(--font-mono);
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  position: relative;
}
.day-cell:hover:not(.disabled) { background: var(--cream-deep); }
.day-cell.disabled { color: var(--ink-mute); opacity: 0.35; cursor: not-allowed; }
.day-cell.selected {
  background: var(--ink);
  color: var(--cream);
}
.day-cell.today::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
}
.day-header {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  text-align: center;
  padding: 8px 0;
}

.tour-side {
  display: grid;
  gap: 24px;
  align-content: start;
}
.tour-side-card {
  background: var(--ink);
  color: var(--cream);
  padding: 32px;
  border-radius: 8px;
}
.tour-side-card h3 {
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.tour-checklist {
  list-style: none;
  padding: 0; margin: 20px 0 0;
  display: grid; gap: 10px;
  font-size: 14.5px;
  color: color-mix(in oklab, var(--cream) 88%, transparent);
}
.tour-checklist li { padding-left: 24px; position: relative; }
.tour-checklist li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.tour-side-img {
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
}
.tour-side-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: color 120ms;
}
.faq-q:hover { color: var(--terracotta); }
.faq-q .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 200ms, background 200ms, color 200ms;
}
.faq-item.open .faq-q .plus {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
}
.faq-a p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-top: 16px;
  max-width: 68ch;
}
.faq-cat {
  margin-top: clamp(48px, 5vw, 72px);
  margin-bottom: 16px;
}
.faq-cat:first-child { margin-top: 0; }
.faq-cat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
