:root {
  --ink: #11212b;
  --ink-soft: #59707b;
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --gold: #be882e;
  --gold-deep: #93661c;
  --line: rgba(17, 33, 43, 0.12);
  --hero: #132733;
  --shadow-lg: 0 28px 70px rgba(11, 20, 28, 0.16);
  --shadow-md: 0 18px 40px rgba(11, 20, 28, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(190, 136, 46, 0.18), transparent 26%),
    linear-gradient(135deg, #faf4ea 0%, #f3ead8 48%, #efe6db 100%);
}

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

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

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 60px;
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.surface {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  background:
    radial-gradient(circle at bottom right, rgba(190, 136, 46, 0.28), transparent 28%),
    linear-gradient(145deg, rgba(19, 39, 51, 0.98), rgba(31, 56, 69, 0.95));
  color: #f8f2e9;
  padding: 42px;
}

.hero-copy h1 {
  margin-top: 12px;
  max-width: 9ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-text {
  margin-top: 18px;
  max-width: 58ch;
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(248, 242, 233, 0.86);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-chips span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.hero-card {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.hero-card h2 {
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.hero-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(248, 242, 233, 0.72);
}

.eyebrow-dark {
  color: var(--ink-soft);
}

.mini-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}

.main-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  margin-top: 24px;
}

.surface {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: 30px;
  backdrop-filter: blur(12px);
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: "Cormorant Garamond", serif;
}

.spacing-top {
  margin-top: 30px;
}

.event-grid,
.calendar-grid,
.time-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

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

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

.selectable-card,
.day-button,
.time-button {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.selectable-card:hover,
.day-button:hover,
.time-button:hover,
.is-selected {
  transform: translateY(-2px);
  border-color: rgba(190, 136, 46, 0.72);
  box-shadow: 0 16px 34px rgba(190, 136, 46, 0.15);
}

.selectable-card {
  text-align: left;
  padding: 18px;
}

.selectable-card h3 {
  font-size: 1.05rem;
}

.selectable-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.day-button {
  padding: 14px 6px;
}

.day-button span {
  display: block;
  text-align: center;
}

.day-name {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.day-number {
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 700;
}

.time-button {
  padding: 16px 12px;
  font-weight: 600;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.summary-card,
.notice-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.summary-card h3,
.notice-card h3 {
  font-size: 1.04rem;
}

.summary-card p,
.notice-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.primary-button {
  margin-top: 4px;
  border: 0;
  border-radius: 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fffaf0;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(147, 102, 28, 0.26);
}

@media (max-width: 1024px) {
  .hero,
  .main-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1240px);
    padding: 18px 0 32px;
  }

  .hero-copy,
  .hero-card,
  .surface {
    padding: 22px;
  }

  .event-grid,
  .time-grid,
  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}
