/* Design tokens - match the Bellas XV admin theme */
:root {
  --rose-gold: #B76E79;
  --rose-gold-dark: #8B4D58;
  --amethyst: #5D3A6B;
  --cream: #FAF6F4;
  --cream-tint: #F4ECEA;
  --blush: #F4D5DC;
  --blush-hover: #EBC0CA;
  --aubergine: #2D1B2E;
  --warm-gray: #7A6B73;
  --warm-divider: #E8DCD8;
  --white: #FFFFFF;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --content-max: 1200px;
  --content-padding: 1.25rem;
  --radius-md: 10px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--aubergine);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 5vw, 2.5rem); }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  background: var(--aubergine);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  z-index: 100;
}

/* Hero - mobile-first */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(183, 110, 121, 0.32), transparent 32rem),
    linear-gradient(135deg, var(--cream-tint), var(--aubergine));
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-5) var(--content-padding) var(--space-4);
}

.hero__wordmark {
  position: absolute;
  top: var(--space-5);
  right: var(--content-padding);
  width: clamp(140px, 30vw, 240px);
  height: auto;
}

.hero__content {
  width: 100%;
  max-width: 36rem;
  transform: translateY(4vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__headline {
  width: 100%;
  align-self: flex-start;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero__headline-main,
.hero__headline-sub {
  display: block;
}

.hero__headline-main {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.hero__headline-sub {
  max-width: 20rem;
  margin-top: var(--space-1);
  margin-inline: auto;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: min(80%, 360px);
  max-width: 360px;
  margin-top: var(--space-4);
  padding: 0 var(--space-4);
  background: var(--blush);
  color: var(--aubergine);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(45, 27, 46, 0.2);
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background: var(--blush-hover);
}

.hero__cta:active { transform: translateY(1px); }

.hero__cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

/* Booking - mobile-first */
.booking {
  background: var(--cream);
  padding: var(--space-6) 0;
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.booking__photo {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(rgba(45, 27, 46, 0.08), rgba(45, 27, 46, 0.08)),
    linear-gradient(135deg, var(--cream-tint), #E3D0CE);
  aspect-ratio: 4 / 5;
}

.booking__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking__widget {
  display: flex;
  align-items: center;
  order: -1;
}

.booking__widget-placeholder {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--warm-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking__widget-placeholder h2 {
  margin-bottom: var(--space-2);
  color: var(--aubergine);
}

.booking__widget-placeholder p {
  color: var(--warm-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.booking__widget-placeholder a {
  color: var(--rose-gold);
  font-weight: 500;
  text-decoration: none;
}

.booking__widget-placeholder a:hover,
.booking__widget-placeholder a:focus-visible {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--aubergine);
  color: var(--cream);
  padding: var(--space-6) 0 var(--space-3);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.footer__brand { text-align: center; }

.footer__wordmark {
  width: 160px;
  height: auto;
  margin: 0 auto var(--space-2);
}

.footer__rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.875rem;
  color: var(--cream);
  opacity: 0.85;
}

.footer__stars {
  color: var(--rose-gold);
  letter-spacing: 0.1em;
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-1);
  color: var(--rose-gold);
}

.footer__contact p,
.footer__hours dl {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer__contact p + p { margin-top: var(--space-1); }

.footer__contact a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 246, 244, 0.3);
}

.footer__contact a:hover,
.footer__contact a:focus-visible {
  border-bottom-color: var(--rose-gold);
}

.footer__hours dl {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-3);
  row-gap: 0.25rem;
}

.footer__hours dt {
  color: var(--rose-gold);
  font-weight: 500;
}

.footer__hours dd { margin: 0; }

.footer__bottom {
  border-top: 1px solid rgba(250, 246, 244, 0.15);
  padding-top: var(--space-3);
  font-size: 0.8125rem;
  opacity: 0.7;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__overlay {
    padding: var(--space-6) var(--space-5) var(--space-6);
    align-items: stretch;
  }

  .hero__wordmark {
    top: var(--space-6);
    right: var(--space-5);
  }

  .hero__content {
    max-width: 64rem;
    align-items: flex-start;
    text-align: left;
    transform: translateY(-15vh);
  }

  .hero__headline-main {
    font-size: clamp(2.75rem, 5.5vw, 5rem);
  }

  .hero__headline-sub {
    max-width: 28rem;
    margin-inline: 0;
  }

  .hero__cta {
    width: auto;
    min-width: 280px;
  }

  .booking { padding: var(--space-7) 0; }

  .booking__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-5);
    align-items: stretch;
  }

  .booking__widget { order: 0; }

  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: var(--space-5);
  }

  .footer__brand { text-align: left; }
  .footer__wordmark { margin: 0 0 var(--space-2); }
}
