/* Clone of live Wix chrome — not a new brand system */
:root {
  --sage: rgb(147, 171, 140);
  --sage-rgb: 147, 171, 140;
  --mint: rgb(244, 248, 245);
  --gray: #6d6e72;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --white: #ffffff;
  --site: 1040px;
  --pad: 24px;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito Sans", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: "Nunito Sans", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 0.45em;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0 0 1em; padding-left: 1.2em; }
.skip {
  position: absolute; left: -999px; top: 0; background: #000; color: #fff; padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }
.wrap { width: min(var(--site), calc(100% - var(--pad) * 2)); margin: 0 auto; }

/* Header — logo left, nav + email/phone on one bottom baseline */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
}
.header-bar {
  width: min(var(--site), calc(100% - var(--pad) * 2));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 10px;
}
.header-right {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  flex-wrap: nowrap;
}
.brand img { width: 80px; height: 64px; object-fit: contain; }
.header-contact {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
  padding: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-contact a { text-decoration: none; color: #000; }
.header-contact a:hover { text-decoration: underline; }
.social { display: flex; gap: 10px; align-items: center; }
.social img { width: 20px; height: 20px; }
.nav-row {
  width: min(var(--site), calc(100% - var(--pad) * 2));
  margin: 0 auto;
  padding: 4px 0 14px;
}
.nav-desktop { display: none; align-items: baseline; gap: 0; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; flex-shrink: 0; }
.nav-desktop > li { position: relative; flex-shrink: 0; }
.nav-desktop a, .nav-desktop button {
  display: inline-block;
  align-items: baseline;
  min-height: 0;
  padding: 0 12px 0 0;
  margin: 0;
  background: none;
  border: 0;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-desktop a:hover, .nav-desktop button:hover,
.nav-desktop a.is-active { color: var(--sage); }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  z-index: 20;
  padding: 6px 0;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { display: block; }
.submenu a {
  display: block;
  padding: 8px 16px;
  margin: 0;
  min-height: 40px;
  font-size: 14px;
}
.submenu a:hover { background: var(--mint); }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: #000; position: relative;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: #fff;
  z-index: 50;
  padding: 16px 20px 32px;
  overflow-y: auto;
}
body.nav-open { overflow: hidden; }
body.nav-open .nav-overlay { display: block; }
.overlay-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.nav-overlay nav { display: flex; flex-direction: column; }
.nav-overlay a {
  display: flex; align-items: center;
  min-height: 48px;
  padding: 8px 0;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  border-bottom: 1px solid #eee;
}
.nav-overlay .sub a { font-size: 16px; padding-left: 12px; color: #404040; }

/* Hero — left-stacked copy, crop toward the dogs */
.hero {
  position: relative;
  min-height: 78vh;
  height: 78vh;
  max-height: 920px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  background-color: #000;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4.5vh 20px 0;
}
.hero-copy {
  width: min(420px, 58%);
  margin: 0;
  padding-left: max(0px, calc((100% - min(var(--site), calc(100% - var(--pad) * 2))) / 2));
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 7vw, 80px);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-shadow: 0 1px 12px rgba(0,0,0,.28);
}
.hero h1 span { display: block; }
.hero h1 span:first-child { margin-bottom: 0.08em; color: #fff; }
.hero h1 span:not(:first-child) {
  color: var(--sage);
  font-size: 0.36em;
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.hero .tagline {
  color: var(--sage);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.4;
  margin: 0.2em 0 0;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}

/* Page titles — Wix centered sage */
.page-hero {
  padding: 40px 0 16px;
  text-align: center;
}
.page-hero.tight { padding: 20px 0 8px; }
.page-hero h1 {
  color: var(--sage);
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
}
.page-hero .sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.page-hero .lede {
  font-size: 16px;
  font-weight: 300;
  max-width: 640px;
  margin: 12px auto 0;
}

.section { padding: 32px 0 56px; }
.mint { background: var(--mint); }
.sage-band {
  background: var(--sage);
  color: #fff;
  padding: 56px 0;
}
.sage-band h2, .sage-band h1 { color: #fff; font-size: clamp(28px, 5vw, 48px); font-weight: 800; }
.sage-band a { color: #fff; }
.sage-band .lede { font-weight: 300; }

/* Towns — visible list, Wix-simple */
.towns {
  padding: 48px 0;
  background: var(--mint);
}
.towns h2 {
  color: var(--sage);
  font-size: 24px;
  text-align: center;
  margin-bottom: 8px;
}
.towns .note { text-align: center; max-width: 720px; margin: 0 auto 16px; font-weight: 300; }
.town-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 48px;
  text-align: center;
  max-width: 420px;
}
.town-list li { font-weight: 600; padding: 6px 0; }

.footer-towns {
  list-style: none;
  padding: 0;
  margin: 10px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.footer-towns li { font-weight: 600; font-size: 14px; }

/* Cards / packages — light mint strips like Wix columns */
.card {
  background: var(--mint);
  padding: 28px 28px 32px;
  margin: 0 0 24px;
  overflow: hidden;
}
.card-photo {
  width: calc(100% + 56px);
  max-width: none;
  height: 280px;
  object-fit: cover;
  object-position: center 28%;
  margin: -28px -28px 22px;
}
.card-photo.face-top {
  object-position: center top;
  height: 300px;
}
.card-photo.full {
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  background: var(--mint);
}

.card h2, .card h3 { color: var(--sage); }
.card-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.card-row .card {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-row .card .btn {
  margin-top: auto;
  align-self: flex-start;
  min-width: 140px;
}
.price { font-weight: 800; font-size: 22px; color: #000; }
.placeholder-flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 2px 6px;
  margin-left: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 22px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  border: 0;
}
.btn-pill {
  background: var(--sage);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 300;
  font-size: 16px;
}
.btn-pill:hover { filter: brightness(0.95); }
.btn-submit {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  width: 142px;
  height: 47px;
}
.btn-submit:hover { background: #f7f7f7; }
.btn[disabled], .btn.is-disabled { opacity: 0.45; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

.split { display: grid; gap: 28px; }
.photo img { width: 100%; }
.creds { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 24px; }
.creds img { height: 72px; width: auto; }

.quote {
  margin: 0 0 32px;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--sage);
}
.quote p { color: var(--ink); }
.quote .who { font-weight: 800; margin-top: 10px; color: var(--muted); font-size: 14px; letter-spacing: 0.02em; }

.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-weight: 300; font-size: 15px; }
.form input, .form textarea {
  width: 100%;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 6px 10px;
  font: inherit;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.form textarea { height: 120px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,0.65); }
.form input:focus, .form textarea:focus { outline: none; border-color: #fff; background: transparent; }
.sage-band .form label { color: #fff; }
/* Contact page (white bg) keeps outline, ink text */
.page-hero ~ .section .form input,
.page-hero ~ .section .form textarea,
.section .form input,
.section .form textarea {
  border-color: #000;
  color: #000;
  background: transparent;
}
.section .form input::placeholder, .section .form textarea::placeholder { color: #777; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-status { display: none; padding: 10px 0; }
.form-status.is-on { display: block; }

.contact-grid { display: grid; gap: 32px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 16px; }
.contact-list li { margin: 0 0 8px; }

.site-footer {
  background: var(--gray);
  color: #fff;
  padding: 48px 0 28px;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; gap: 24px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0 0 8px; }
.footer-links a { font-weight: 400; }
.legal { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.25); font-size: 13px; }

.prose p { margin: 0 0 1em; }
.note { margin: 0 0 20px; }
.empty-state { text-align: center; padding: 20px 0 40px; }
.photo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.photo-row img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 780px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .split.two, .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .split.photo { grid-template-columns: 1fr 1.2fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .card-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .photo-row { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .card-row .card { margin: 0; }
}
@media (max-width: 779px) {
  .header-contact { font-size: 13px; }
  .hero { min-height: 70vh; height: 70vh; padding: 28px 16px 0; background-position: 62% 80%; }
  .hero-copy { width: min(280px, 70%); padding-left: 0; }
}

.about-photo { padding: 28px 0 0; }
.about-photo img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 35%;
}
.contact-photo img {
  max-height: 680px;
  object-fit: cover;
  object-position: center top;
}
.about-brief { max-width: 680px; margin-left: auto; margin-right: auto; }
.about-brief p { margin-bottom: 1.15em; }

.guide-cover { padding: 32px 0 0; }
.guide-cover img {
  width: min(380px, 100%);
  height: auto;
  margin: 0 auto;
  display: block;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
