/* Fed and Fussed — base styles */

* { box-sizing: border-box; }

:root {
  --ink: #2a2431;
  --ink-soft: #4c4458;
  --text: #575065;
  --text-mute: #7a7288;
  --text-faint: #8b8398;
  --border: #e8e2f2;
  --field-border: #e4dced;
  --panel-bg: #f6f2fb;
  --brand: #158f95;
  --brand-dark: #0f7278;
  --brand-darker: #0a5a60;
  --free-bg: #d2edec;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  overflow-x: hidden;
  font-family: 'Karla', system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}
a:hover {
  color: var(--brand-darker);
}

input, textarea, select, button {
  font-family: 'Karla', system-ui, sans-serif;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 28px);
  padding-right: clamp(16px, 4vw, 28px);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--brand-dark);
  color: #ffffff;
}
.btn-outline {
  border: 1px solid #d3cbe4;
  color: #3a3342;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: #3a3342;
}
.btn-lg {
  height: 50px;
  padding: 0 26px;
  font-size: 16px;
}
.btn-block {
  width: 100%;
}
.btn-nav {
  height: 38px;
  padding: 0 18px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 37px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(12px, 2vw, 22px);
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
}

.nav a:not(.btn) {
  color: var(--text);
}

/* Hero */

.hero {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(21, 143, 149, 0.45);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  font-size: clamp(38px, 7.5vw, 70px);
  line-height: 1.08;
  margin: 20px 0 0;
  text-wrap: balance;
}

.lead {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.6;
  color: var(--text);
  margin: 22px 0 0;
  max-width: 46ch;
  text-wrap: pretty;
}

.lead-wide {
  max-width: 56ch;
  font-size: 17px;
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  font-size: 14px;
  color: var(--text-faint);
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Sections */

.section {
  padding-top: clamp(52px, 7vw, 84px);
}

.section-tint {
  border-top: 1px solid var(--border);
  background: var(--panel-bg);
}

#availability.section-tint,
#contact.section-tint {
  padding-bottom: clamp(52px, 7vw, 80px);
}

.about-section {
  margin-top: 84px;
}

/* Cards */

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 28px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card-grid:first-of-type {
  margin-top: 36px;
}

.card h3 {
  font-size: 26px;
  margin: 0 0 10px;
}

.card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
}

.info-card {
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 20px clamp(18px, 3vw, 26px);
}

.info-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.info-body {
  font-size: 16px;
  line-height: 1.55;
}

/* Availability */

.availability-grid {
  padding-top: clamp(52px, 7vw, 80px);
  padding-bottom: clamp(52px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.legend {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  font-size: 14px;
  color: var(--text);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.swatch {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  display: inline-block;
}

.swatch-free {
  background: var(--free-bg);
}

.swatch-booked {
  background: var(--border);
}

.enquiry-cta {
  margin-top: 28px;
}

.field-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #453d50;
}

.field input,
.field select,
.field textarea {
  height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--field-border);
  background: var(--panel-bg);
  font-size: 15.5px;
  font-weight: 400;
  color: var(--ink);
}

.field textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}

/* Calendar */

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: #4c4458;
}

.cal-nav:hover:not(:disabled) {
  border-color: var(--brand);
}

.cal-nav:disabled {
  cursor: default;
  opacity: 0.5;
}

.calendar-month {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.calendar-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 6px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-cell {
  aspect-ratio: 1 / 0.92;
}

.cal-day {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}

.cal-free {
  background: var(--free-bg);
  color: var(--brand-darker);
}

.cal-free:hover {
  background: #b6e2e0;
}

.cal-selected {
  background: var(--brand);
  color: #ffffff;
}

.cal-booked {
  background: #eeecf2;
  color: #9a93a6;
  text-decoration: line-through;
  cursor: default;
}

.calendar-note {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.calendar-note p {
  margin: 0;
  font-size: 14px;
  color: var(--text-faint);
}

.calendar-foot {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--text-mute);
}

.slot-list-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 6px;
}

.slot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 14px;
}

.slot-status {
  font-size: 12.5px;
  font-weight: 600;
}

.slot-free {
  background: var(--free-bg);
  color: var(--brand-darker);
}

.slot-taken {
  background: var(--border);
  color: var(--text-faint);
}

.slot-buffer {
  background: var(--panel-bg);
  color: var(--text-faint);
  border: 1px dashed var(--field-border);
}

.slot-closed {
  background: var(--panel-bg);
  color: var(--text-faint);
  opacity: 0.7;
}

.slot-closed .slot-status {
  font-weight: 400;
}

.calendar-unavailable {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* Pricing */

.price-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  position: relative;
}

.price-featured {
  border: 2px solid var(--brand);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--brand);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
}

.price-label {
  font-size: 14px;
  color: var(--text-mute);
  font-weight: 600;
}

.price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(42px, 5vw, 54px);
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  line-height: 1.05;
}

.price-amount-sm {
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: 0.005em;
}

.price-unit {
  font-size: 15px;
  color: var(--text-mute);
  margin-bottom: 18px;
}

.price-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
}

/* About */

.about-grid {
  padding-top: clamp(52px, 7vw, 80px);
  padding-bottom: clamp(52px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.about-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--field-border);
  aspect-ratio: 1;
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}

.about-grid h2 + p {
  margin-top: 18px;
}

.about-grid p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 16px;
  text-wrap: pretty;
}

.about-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 12px;
  margin-top: 28px;
}

.about-tag {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15.5px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
}

/* Contact */

.contact-grid {
  padding-top: clamp(52px, 7vw, 80px);
  padding-bottom: clamp(52px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  font-size: 16.5px;
}

.contact-hours {
  margin-top: 26px;
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.6;
}

.contact-card {
  padding: clamp(22px, 3vw, 30px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
}

.field-wide {
  grid-column: 1 / -1;
}

.date-range {
  display: flex;
  gap: 12px;
}

.date-range .field {
  flex: 1;
  min-width: 0;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--brand);
  cursor: pointer;
}

.contact-form .btn {
  margin-top: 18px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--text-faint);
  text-align: center;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-mute);
}
