:root {
  --bg: #f4eadc;
  --surface: #eadfce;
  --surface-strong: #ddcfba;
  --ink: #1f1b17;
  --muted: #5f554b;
  --line: rgba(31, 27, 23, 0.12);
  --accent: #6d4a2d;
  --accent-soft: #a97d4d;
  --shadow: 0 20px 50px rgba(40, 25, 10, 0.08);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --text-base: 1.06rem;
  --text-large: 1.14rem;
  --text-small: 0.95rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 30%),
    linear-gradient(180deg, #f7efe4 0%, var(--bg) 40%, #efe3d4 100%);
  font-size: var(--text-base);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 1rem 0 0;
}

.site-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mini-mark {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.brand-mini-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-mini-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.brand-mini-tag {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-copy h1,
.hero-title,
.section-heading h2,
.info-card h3,
.booking-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.signature-line {
  margin: 0.2rem 0 0.55rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

p,
li,
input,
textarea,
button,
label {
  font-family: var(--font-body);
}

.top-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a {
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.55);
}

.hero {
  padding: 1.5rem 0 3rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  padding: 2rem 2rem 2.1rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.2rem, 3.7vw, 3.4rem);
  line-height: 0.98;
  margin-bottom: 1.1rem;
  max-width: none;
}

.hero-copy > p:not(.eyebrow) {
  font-size: var(--text-large);
  max-width: none;
  color: var(--muted);
}

.hero-copy .credibility-strip {
  max-width: none;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.button {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
}

.button-primary {
  background: var(--ink);
  color: #fff8f0;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  list-style: none;
  margin: 1rem 0 0;
}

.credibility-strip li,
.pill-row span {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.placeholder-card,
.image-card,
.info-card,
.quote-card,
.brand-card-panel,
.booking-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.placeholder-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(109, 74, 45, 0.12), rgba(31, 27, 23, 0.12)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.22) 18px,
      rgba(255, 255, 255, 0.08) 18px,
      rgba(255, 255, 255, 0.08) 36px
    );
}

.image-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #dbcbb6;
}

.image-card img {
  width: 100%;
  display: block;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 38%;
}

.hero-media.image-card {
  align-self: stretch;
  margin: 0;
  background: #dbcbb6;
}

.hero-media.image-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 31rem;
  aspect-ratio: 16 / 7.4;
  object-fit: cover;
  object-position: center 31%;
}

.image-caption {
  padding: 1rem 1.2rem 1.2rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--muted);
  background: rgba(244, 234, 220, 0.92);
}

.placeholder-label {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.section {
  padding: 4rem 0;
}

.surface {
  position: relative;
}

.surface::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem;
  border-radius: 40px;
  background: rgba(234, 223, 206, 0.7);
  z-index: -1;
}

.section-heading {
  margin-bottom: 1.5rem;
  max-width: none;
}

.section-heading h2 {
  font-size: clamp(2.15rem, 3vw, 3rem);
  line-height: 1.02;
  max-width: none;
}

.section-copy {
  margin: 0 0 1.25rem;
  max-width: 56rem;
  font-family: var(--font-body);
  font-size: var(--text-large);
  color: var(--muted);
}

.two-column p,
.info-card p,
.booking-panel p,
.quote-card p {
  font-size: var(--text-large);
}

.two-column p {
  max-width: 42rem;
}

.info-card h3,
.booking-panel h3 {
  font-size: 1.9rem;
  line-height: 0.98;
}

.two-column,
.booking-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
}

.quote-card,
.booking-panel,
.info-card {
  padding: 1.4rem;
}

.quote-mark {
  font-size: 4rem;
  line-height: 0.7;
  margin: 0 0 0.5rem;
  color: var(--accent-soft);
}

.brand-card-panel {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 227, 212, 0.78));
  overflow: hidden;
}

.brand-card-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.cards,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.media-featured {
  margin-bottom: 1.35rem;
}

.media-shorts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.media-subheading {
  margin-bottom: 0.85rem;
}

.media-subheading .eyebrow {
  margin-bottom: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.9fr 0.9fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.photo-card-portrait-left img,
.photo-card-portrait-right img {
  aspect-ratio: 4 / 5;
}

.photo-card-portrait-left img {
  object-position: center 26%;
}

.photo-card-portrait-right img {
  object-position: center 22%;
}

.photo-card-square img {
  aspect-ratio: 1 / 1;
  object-position: center;
}

.media-card {
  display: flex;
  flex-direction: column;
}

.media-card p:last-child {
  margin-bottom: 0;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #120f0b;
  margin: 0.6rem 0 1rem;
}

.video-embed-short {
  aspect-ratio: 9 / 16;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-card .small-note a {
  color: var(--accent);
  text-decoration: none;
}

.media-card .small-note a:hover,
.media-card .small-note a:focus-visible {
  text-decoration: underline;
}

.testimonial-card h3 {
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card p,
.testimonial-card footer {
  color: var(--muted);
}

.testimonial-card footer {
  margin-top: 0.8rem;
  font-size: 0.92em;
  font-weight: 600;
}

.testimonial-card p,
.small-note,
.signup-credit,
.site-footer p {
  font-size: var(--text-small);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.booking-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.signup-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.signup-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.signup-form input {
  flex: 1 1 260px;
  min-height: 3.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-family: var(--font-body);
}

.signup-form input[type="submit"] {
  flex: 0 0 auto;
  min-width: 12rem;
  border: 0;
  background: var(--ink);
  color: #fff8f0;
  font-weight: 700;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.1rem;
}

.contact-form label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  color: var(--ink);
}

.contact-form input {
  min-height: 3rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(240, 230, 214, 0.72));
}

.small-note {
  color: var(--muted);
}

.signup-credit {
  margin-top: 0.75rem;
}

.signup-credit a {
  color: var(--accent);
  text-decoration: none;
}

.signup-credit a:hover,
.signup-credit a:focus-visible {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding: 2.5rem 0 4rem;
  color: var(--muted);
}

.footer-social {
  margin-bottom: 1.2rem;
}

.footer-social-label {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.4rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.social-row a:hover,
.social-row a:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero-shell,
  .two-column,
  .booking-grid,
  .cards,
  .event-fit-grid,
  .media-grid,
  .media-shorts-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .site-topbar {
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-title {
    max-width: none;
  }

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

  .image-card {
    border-left: 0;
  }

  .hero-media.image-card {
    margin: 0;
  }

  .image-card img {
    max-height: 26rem;
  }

  .hero-copy {
    padding: 1.5rem 1.25rem 1.7rem;
  }
}
