:root {
  --navy: #17324d;
  --navy-2: #214563;
  --ink: #182531;
  --muted: #687684;
  --sand: #eadcc9;
  --sand-2: #f6f0e8;
  --paper: #fffaf2;
  --sea: #4f8fa5;
  --sage: #7f9979;
  --coral: #d96f55;
  --line: rgba(23, 50, 77, 0.14);
  --shadow: 0 24px 70px rgba(23, 50, 77, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.responsive-picture {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 400;
  max-width: 880px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
}

h3 {
  font-size: 1.08rem;
}

.site-header,
.admin-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav,
.footer-links,
.admin-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav {
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--navy);
}

.button,
.nav-cta,
.chip,
.tab,
.icon-button {
  border: 0;
  border-radius: var(--radius);
  min-height: 44px;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-weight: 750;
}

.primary,
.nav-cta {
  color: white;
  background: var(--navy);
}

.primary:hover,
.nav-cta:hover {
  background: var(--navy-2);
}

.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-dark {
  color: var(--navy);
  border: 1px solid var(--line);
  background: white;
}

.cart-cta {
  position: relative;
}

.cart-cta .cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  color: var(--navy);
  background: white;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.cart-cta:not(.has-items) .cart-count {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 20px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  display: block;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 26, 40, 0.76), rgba(12, 26, 40, 0.2) 58%, rgba(12, 26, 40, 0.05)),
    linear-gradient(0deg, rgba(12, 26, 40, 0.5), transparent 45%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 70px;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.eyebrow,
.label {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow {
  color: #f4c2aa;
}

.hero-actions,
.catalog-tools {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 46px 0 0;
}

.hero-stats div {
  min-width: 144px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.booking-strip {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 14px;
  width: min(1040px, calc(100% - 36px));
  margin: -40px auto 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.date-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.booking-strip input,
.booking-strip select {
  height: 64px;
  min-height: 64px;
  padding: 0 18px;
  font-size: 1rem;
  line-height: 1;
}

.booking-strip select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(79, 143, 165, 0.25);
  border-color: var(--sea);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

[id] {
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.steps-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card,
.product-card,
.metric-card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 38px rgba(23, 50, 77, 0.08);
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  display: grid;
  overflow: hidden;
  padding: 0;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1;
  margin: -18px 20px 14px;
  color: white;
  background: var(--coral);
  border: 3px solid white;
  border-radius: 50%;
  font-weight: 900;
}

.step-media {
  display: block;
}

.step-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.step-card h3 {
  min-height: 0;
  padding: 0 20px;
}

.step-card p {
  padding: 0 20px 22px;
  color: var(--muted);
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.price {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 850;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card picture {
  display: block;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.product-card.in-cart {
  border-color: rgba(31, 111, 83, 0.5);
  box-shadow: 0 0 0 2px rgba(31, 111, 83, 0.1);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-body p {
  color: var(--muted);
}

.product-meta,
.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.rate-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 12px 0;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
}

.rate-line span {
  padding: 8px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-2);
  text-align: center;
}

.pill,
.availability span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--sand-2);
  font-size: 0.78rem;
  font-weight: 750;
}

.availability .low {
  color: #8b3b21;
  background: #f8ddd0;
}

.availability .out {
  color: #7e1f1f;
  background: #f5d5d5;
}

.product-actions {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.product-cart-status {
  min-height: 22px;
  margin: 0 0 8px;
  color: #1f6f53;
  font-size: 0.78rem;
  font-weight: 850;
}

.product-cart-status.empty {
  color: var(--muted);
  font-weight: 700;
}

.product-actions .button.added {
  color: #174d3b;
  border: 1px solid rgba(31, 111, 83, 0.35);
  background: #e8f3ed;
}

.product-actions input {
  text-align: center;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.chip,
.tab {
  padding: 10px 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  background: white;
  font-weight: 800;
  white-space: nowrap;
}

.chip.active,
.tab.active {
  color: white;
  background: var(--navy);
}

.service-band {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: center;
  padding: 72px max(18px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: white;
}

.service-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.service-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.town-page {
  background: var(--paper);
}

.town-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.town-hero .hero-media,
.town-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.town-hero .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.town-hero .hero-overlay {
  background: rgba(10, 29, 47, 0.58);
}

.town-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 58px;
}

.town-hero-content h1 {
  max-width: 820px;
  margin: 10px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

.town-hero-content > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 750;
}

.breadcrumbs a {
  color: white;
}

.town-content {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
}

.town-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 46px;
}

.town-intro h2,
.beach-directory h2 {
  margin-bottom: 14px;
}

.town-note {
  padding: 20px;
  border-left: 4px solid var(--coral);
  background: white;
}

.town-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.beach-directory {
  margin-top: 32px;
}

.beach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 18px;
}

.beach-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.beach-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.beach-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.beach-source {
  color: var(--muted);
  font-size: 0.84rem;
}

.beach-source a {
  font-weight: 800;
}

.town-tips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.town-tip h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.town-tip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.town-cta-band {
  padding: 56px 18px;
  color: white;
  background: var(--navy);
  text-align: center;
}

.town-cta-band h2 {
  max-width: 760px;
  margin: 0 auto 12px;
}

.town-cta-band p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
}

.town-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-self: center;
  align-content: center;
  gap: 12px;
}

.town-board a {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.town-board a:hover,
.town-board a:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
}

.concierge-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-2);
}

.concierge-section {
  padding-top: 64px;
}

.inquiry-form,
.booking-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-rental-details {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.drawer-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.drawer-section-title .label {
  margin-bottom: 0;
}

.drawer-section-title strong {
  color: var(--navy);
  font-size: 0.9rem;
  text-align: right;
}

.rental-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.full,
.full-width {
  grid-column: 1 / -1;
  width: 100%;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  justify-content: flex-end;
  background: rgba(12, 26, 40, 0.46);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: min(620px, 100%);
  height: 100%;
  overflow: auto;
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.icon-button {
  width: 44px;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  font-size: 1.6rem;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.cart-row > button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}

.qty-control {
  display: grid;
  grid-template-columns: 42px minmax(46px, 1fr) 42px;
  align-items: stretch;
  min-width: 144px;
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.qty-control input {
  min-height: 42px;
  padding: 0 4px;
  color: var(--navy);
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: white;
  text-align: center;
  font-weight: 900;
}

.qty-control button {
  width: auto;
  height: 100%;
  min-height: 42px;
  color: var(--navy);
  border: 0;
  border-radius: 0;
  background: white;
  font-size: 1.05rem;
  font-weight: 900;
}

.qty-control button:hover {
  background: var(--sand-2);
}

.catalog-qty {
  width: 148px;
  max-width: 100%;
}

.totals {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
}

.total-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.total-line.strong {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
  font-weight: 900;
}

.fine-print {
  color: var(--muted);
  font-size: 0.8rem;
}

.fine-print.warning {
  color: #9a4d24;
  font-weight: 800;
}

.fine-print.success {
  color: #386b4d;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: white;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: 360px;
  padding: 14px 16px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(120%);
  transition: transform 0.24s ease;
}

.toast.show {
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

.policy-page {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.policy-hero {
  max-width: 820px;
  margin-bottom: 42px;
}

.policy-hero h1 {
  color: var(--navy);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.policy-hero p,
.policy-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.policy-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  max-width: 780px;
  color: var(--navy);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.policy-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.admin-body {
  background: #f7f3ed;
}

.admin-shell {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 80px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.admin-hero h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.admin-login {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.admin-login .button {
  width: 100%;
  margin-top: 12px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-card {
  padding: 18px;
}

.metric-card strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 14px;
}

.admin-view {
  display: grid;
  gap: 14px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.admin-view > *,
.admin-grid > *,
.admin-card {
  min-width: 0;
}

.admin-card {
  overflow: auto;
  padding: 18px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.data-table th,
.data-table td {
  padding: 11px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-select {
  min-width: 160px;
}

.admin-inline-input {
  width: 180px;
  min-height: 38px;
  margin-top: 8px;
  padding: 8px 10px;
  font-size: 0.82rem;
}

.mobile-booking-list {
  display: none;
  gap: 12px;
}

.booking-mobile-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.booking-card-header,
.booking-card-house {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.booking-card-header strong,
.booking-card-section strong,
.booking-card-total strong {
  display: block;
  color: var(--navy);
}

.booking-card-total {
  text-align: right;
}

.booking-card-section {
  display: grid;
  gap: 5px;
}

.booking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mobile-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-status-grid label {
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.mobile-status-grid .wide {
  grid-column: 1 / -1;
}

.mobile-status-grid select,
.mobile-status-grid input {
  width: 100%;
  min-width: 0;
  margin-top: 6px;
}

.catalog-admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.catalog-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.catalog-editor-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.catalog-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-2);
}

.catalog-editor-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.catalog-editor-fields label,
.catalog-editor-card label {
  min-width: 0;
}

.catalog-editor-fields .wide,
.toggle-row.wide {
  grid-column: 1 / -1;
}

.catalog-editor-card textarea {
  min-height: 86px;
  resize: vertical;
}

.computed-rates {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px;
}

.computed-rates span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--sand-2);
  font-size: 0.82rem;
  font-weight: 850;
}

.toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.toggle-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.toggle-row input {
  width: 18px;
  min-height: 18px;
}

.route-list {
  display: grid;
  gap: 10px;
}

.route-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.route-card-map {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: start;
}

.mini-map {
  display: block;
  width: 138px;
  color: inherit;
  text-decoration: none;
}

.mini-map svg {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef5f1;
}

.mini-map span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-item-list {
  display: grid;
  gap: 6px;
  min-width: 230px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-item-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-2);
}

.admin-item-list strong {
  color: var(--navy);
}

.admin-item-list small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.72rem;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .booking-strip,
  .service-band,
  .concierge-panel,
  .admin-hero,
  .admin-grid,
  .metric-grid,
  .catalog-admin-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    display: block;
  }

  .town-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .admin-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-actions,
  .admin-actions .button {
    width: 100%;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 14px 18px;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .site-header .brand strong {
    font-size: 1rem;
  }

  .site-header .brand small {
    font-size: 0.65rem;
  }

  .site-header .nav-cta {
    width: auto;
    min-height: 40px;
    justify-self: end;
    padding: 9px 12px;
  }

  .cart-cta .cart-count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
  }

  .booking-strip,
  .inquiry-form,
  .booking-form .form-grid,
  .rental-fields {
    grid-template-columns: 1fr;
  }

  .date-pair,
  .steps-grid,
  .product-grid,
  .town-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .hero {
    min-height: 540px;
  }

  .hero-content {
    width: min(1180px, calc(100% - 32px));
    padding: 48px 0 34px;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-height: 48px;
  }

  .booking-strip {
    gap: 10px;
    width: min(1040px, calc(100% - 28px));
    margin-top: -22px;
    padding: 12px;
  }

  .booking-strip input,
  .booking-strip select {
    height: 50px;
    min-height: 50px;
    padding: 0 12px;
  }

  .booking-strip .button {
    min-height: 50px;
  }

  .section {
    width: min(1180px, calc(100% - 28px));
    padding: 42px 0;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .steps-grid,
  .product-grid {
    gap: 10px;
  }

  .step-image {
    aspect-ratio: 1.55 / 1;
  }

  .step-card span {
    width: 28px;
    height: 28px;
    margin: -14px 12px 8px;
    border-width: 2px;
    font-size: 0.86rem;
  }

  .step-card h3 {
    padding: 0 12px;
    font-size: 0.95rem;
    line-height: 1.16;
  }

  .step-card p {
    padding: 0 12px 14px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .product-card img {
    aspect-ratio: 1.55 / 1;
  }

  .product-body {
    padding: 8px;
  }

  .product-meta {
    gap: 5px;
    margin: 6px 0;
  }

  .product-meta .pill:first-child {
    display: none;
  }

  .pill {
    min-height: 24px;
    padding: 3px 7px;
    font-size: 0.68rem;
  }

  .product-body h3 {
    margin-bottom: 4px;
    font-size: 0.96rem;
  }

  .product-body p {
    display: -webkit-box;
    min-height: 0;
    margin-bottom: 6px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .product-cart-status {
    min-height: 18px;
    margin-bottom: 5px;
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .rate-line {
    gap: 4px;
    margin: 6px 0;
    font-size: 0.58rem;
  }

  .rate-line span {
    padding: 4px 2px;
  }

  .product-actions {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .catalog-qty {
    grid-template-columns: 36px minmax(38px, 1fr) 36px;
    width: 100%;
    min-width: 0;
    height: 38px;
  }

  .catalog-qty button {
    min-height: 36px;
  }

  .catalog-qty input {
    min-height: 36px;
  }

  .product-actions .button {
    min-height: 36px;
    padding: 6px 8px;
  }

  .drawer-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .drawer-section-title strong {
    text-align: left;
  }

  .route-card-map {
    grid-template-columns: 1fr;
  }

  .desktop-booking-table {
    display: none;
  }

  .mobile-booking-list {
    display: grid;
  }

  .booking-card-header,
  .booking-card-house {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-card-total {
    text-align: left;
  }

  .mobile-status-grid {
    grid-template-columns: 1fr;
  }

  .status-select,
  .admin-inline-input {
    width: 100%;
    min-width: 0;
  }

  .admin-item-list {
    min-width: 0;
  }

  .mini-map {
    width: 100%;
    max-width: 180px;
  }

  .catalog-editor-card,
  .catalog-editor-fields {
    grid-template-columns: 1fr;
  }

  .computed-rates {
    align-items: stretch;
  }

  .computed-rates span {
    flex: 1;
  }

  .service-band {
    gap: 24px;
    padding: 42px 18px;
  }

  .town-hero {
    min-height: 430px;
  }

  .town-hero-content {
    width: min(100% - 28px, 1180px);
    padding: 72px 0 36px;
  }

  .town-hero-content h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .town-content {
    width: min(100% - 28px, 1080px);
    padding: 42px 0;
  }

  .town-intro,
  .beach-list,
  .town-tips {
    grid-template-columns: 1fr;
  }

  .town-intro {
    gap: 22px;
    margin-bottom: 34px;
  }

  .beach-list {
    gap: 8px;
  }

  .beach-item {
    padding: 14px;
  }

  .town-tips {
    gap: 20px;
    margin-top: 36px;
    padding-top: 28px;
  }

  .service-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .town-board {
    gap: 10px;
  }

  .town-board a {
    min-height: 66px;
    padding: 12px;
    font-size: 0.9rem;
  }

  .cart-panel {
    padding: 16px;
  }

  .cart-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 10px;
  }

  .cart-row .cart-qty {
    grid-column: 1;
  }

  .cart-header {
    margin-bottom: 14px;
  }

  .cart-header h2 {
    font-size: 2rem;
  }

  .booking-rental-details {
    padding: 12px;
  }

  .policy-page {
    width: min(1040px, calc(100% - 28px));
    padding: 42px 0;
  }

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