/* ============================================================
   CSS Variables & Reset
   ============================================================ */

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

:root {
  --cream:  #faf8f4;
  --beige:  #f1ede5;
  --dark:   #1c1917;
  --mid:    #44403c;
  --muted:  #78716c;
  --faint:  #a8a29e;
  --border: #e7e5e4;
  --border-light: rgba(231, 229, 228, 0.6);
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Strip WordPress block editor spacing from the front page */
.rh-front-page .wp-site-blocks,
.rh-front-page .entry-content,
.rh-front-page .wp-block-group,
.rh-front-page .wp-block-group__inner-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* Each ACF block renders its own outer <section> — no extra wrapper margin */
.rh-front-page .wp-block-acf-rosenfors-hero,
.rh-front-page .wp-block-acf-rosenfors-availability-bar,
.rh-front-page .wp-block-acf-rosenfors-about,
.rh-front-page .wp-block-acf-rosenfors-om-oss,
.rh-front-page .wp-block-acf-rosenfors-oland,
.rh-front-page .wp-block-acf-rosenfors-booking-cta {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mid);
  background-color: var(--cream);
  min-height: 100vh;
}

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

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

button {
  font-family: var(--sans);
  cursor: pointer;
}

/* ============================================================
   Typography helpers
   ============================================================ */

.rh-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #78716c; /* stone-500 */
  margin-bottom: 1.5rem;
}

.rh-eyebrow--center {
  text-align: center;
}

.rh-eyebrow--light {
  color: rgba(250, 248, 244, 0.6);
}

.rh-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 2rem;
}

.rh-h2 em {
  font-style: italic;
}

.rh-h2 span {
  display: block;
}

.rh-h2--center {
  text-align: center;
}

.rh-h2--light {
  color: var(--cream);
}

.rh-h2--large {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

/* ============================================================
   Container
   ============================================================ */

.rh-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .rh-container {
    padding: 0 3rem;
  }
}

.rh-container--wide {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .rh-container--wide {
    padding: 0 3rem;
  }
}

.rh-container--narrow {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
