:root {
  --bg: #f5f0e8;
  --bg-soft: #efe4d5;
  --card: rgba(255, 250, 244, 0.82);
  --card-strong: rgba(77, 34, 22, 0.9);
  --text: #241813;
  --muted: #6f6058;
  --accent: #8f3c2d;
  --accent-deep: #5b1f16;
  --accent-soft: #cfb295;
  --line: rgba(54, 32, 25, 0.12);
  --shadow: 0 20px 70px rgba(50, 23, 17, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(170, 92, 70, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(100, 121, 69, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f2ea 0%, #f0e6d9 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 60, 45, 0.08), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  top: -12vw;
  right: -10vw;
}

.site-shell::after {
  bottom: -14vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(109, 122, 75, 0.1), transparent 70%);
}

.site-header,
.site-footer,
.section,
.page-hero,
.hero {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  margin-top: 4px;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 6px -18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(247, 240, 231, 0.72);
  box-shadow: 0 10px 30px rgba(36, 24, 19, 0.05);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  gap: 4px;
  min-height: 48px;
  line-height: 1;
}

.brand-mark,
.eyebrow,
.card-kicker,
.panel-label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--accent);
  font-weight: 700;
}

.brand-name {
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.header-right {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a,
.lang-switch,
.menu-toggle {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.lang-switch:hover,
.menu-toggle:hover {
  background: rgba(143, 60, 45, 0.09);
  color: var(--accent-deep);
}

.site-nav a.is-active {
  background: var(--accent-deep);
  color: #fff7f2;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(68, 40, 31, 0.1);
  background: rgba(255, 250, 244, 0.78);
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.68);
}

.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: grid;
  align-items: end;
  padding: 24px 0 72px;
}

.hero-home {
  width: 100%;
  margin: 0;
  padding: 120px 0 72px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  min-height: calc(min(88vh, 860px) - 192px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 15, 11, 0.78), rgba(29, 15, 11, 0.12) 52%, rgba(29, 15, 11, 0.56)),
    linear-gradient(180deg, rgba(29, 15, 11, 0.2), rgba(29, 15, 11, 0.08) 45%, rgba(29, 15, 11, 0.58));
}

.hero-home .hero-media {
  border-radius: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content,
.hero-panel,
.page-hero-copy,
.story-copy,
.section-copy,
.feature-card,
.highlight-band,
.info-card,
.amenity-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 620px;
  padding: 72px 0 0 56px;
  color: #fff5ef;
}

.hero-home .hero-content {
  padding: 0;
  transform: translateY(-28px);
}

.hero-pretitle {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 241, 232, 0.86);
}

.hero-content h1,
.page-hero-copy h1,
.section-copy h2,
.story-copy h2,
.section-heading h2,
.highlight-band h2,
.info-card h2,
.amenity-card h2,
.feature-card h3,
.tasting-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-weight: 600;
  line-height: 0.96;
}

.hero-content h1 {
  max-width: 520px;
  font-size: clamp(4rem, 9vw, 8rem);
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-accent {
  color: #b24d39;
  text-shadow: 0 12px 30px rgba(64, 17, 9, 0.28);
}

.lead,
.page-hero-copy p,
.section-copy p,
.story-copy p,
.highlight-band p,
.feature-card p,
.info-card p,
.amenity-card p,
.tasting-copy p {
  max-width: 62ch;
  font-size: 1.03rem;
}

.lead {
  margin: 22px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  color: rgba(255, 245, 239, 0.88);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: #fff7f2;
  color: var(--accent-deep);
}

.button-ghost {
  border: 1px solid rgba(255, 247, 242, 0.34);
  color: #fff7f2;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  justify-self: end;
  max-width: 330px;
  margin: 0 32px 0 0;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 243, 234, 0.18);
  border-radius: 22px;
  background: rgba(51, 25, 19, 0.52);
  backdrop-filter: blur(16px);
  color: rgba(255, 245, 239, 0.9);
  box-shadow: var(--shadow);
}

.hero-home .hero-panel {
  margin: 0;
}

.hero-panel p {
  margin: 0;
}

.hero-panel p + p {
  margin-top: 12px;
}

.panel-label {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 245, 239, 0.68);
}

.section,
.page-hero {
  padding: 110px 0;
}

.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
}

.page-hero-copy {
  max-width: 700px;
  padding: 0 52px 48px;
  color: #fff6f2;
}

.page-hero-copy h1 {
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: rgba(255, 238, 230, 0.76);
}

.intro-grid,
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.section-copy h2,
.story-copy h2,
.section-heading h2,
.highlight-band h2,
.info-card h2,
.amenity-card h2,
.tasting-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4.35rem);
  margin-bottom: 18px;
}

.frame-photo,
.story-image,
.mosaic-item,
.image-strip figure,
.image-band figure,
.tasting-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.frame-photo {
  position: relative;
}

.story-image {
  position: relative;
}

.frame-photo::before {
  content: "";
  position: absolute;
  inset: 24px auto auto -22px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(143, 60, 45, 0.12), rgba(100, 121, 69, 0.18));
  z-index: -1;
}

.frame-photo img,
.story-image img,
.mosaic-item img,
.image-strip img,
.image-band img,
.tasting-gallery img,
.feature-card img,
.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-offset {
  transform: translateY(26px);
}

.cards-section {
  padding-top: 40px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

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

.feature-card {
  display: grid;
  gap: 0;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: transparent;
  overflow: hidden;
}

.feature-card-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-card-media img {
  aspect-ratio: 0.95;
}

.feature-card-copy {
  display: grid;
  gap: 10px;
  margin: -64px 20px 0;
  padding: 22px 22px 24px;
  border: 1px solid rgba(68, 40, 31, 0.1);
  border-radius: 22px;
  background: rgba(255, 248, 241, 0.92);
  box-shadow: 0 18px 42px rgba(50, 23, 17, 0.14);
  backdrop-filter: blur(12px);
}

.feature-card-copy p,
.feature-card-copy h3,
.feature-card-copy a {
  position: relative;
  z-index: 1;
}

.card-kicker {
  margin-bottom: 4px;
}

.card-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(91, 31, 22, 0.14);
  border-radius: 999px;
  background: rgba(91, 31, 22, 0.88);
  color: #fff7f2;
  box-shadow: 0 8px 24px rgba(50, 23, 17, 0.14);
}

.feature-card h3 {
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-deep);
}

.feature-card p {
  color: var(--text);
}

.feature-card a {
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
}

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.split-story.reverse .story-image {
  order: 2;
}

.split-story.reverse .story-copy {
  order: 1;
}

.story-image {
  min-height: 560px;
}

.story-image img {
  position: absolute;
  inset: 0;
}

.highlight-band {
  padding: 44px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(91, 31, 22, 0.94), rgba(143, 60, 45, 0.84)),
    #6b2e23;
  color: #fff5ef;
  box-shadow: var(--shadow);
}

.highlight-band .eyebrow {
  color: rgba(255, 238, 230, 0.76);
}

.gallery-block {
  padding-top: 70px;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 86px;
  gap: 18px;
}

.mosaic-item {
  grid-column: span 4;
  grid-row: span 3;
}

.mosaic-item.tall {
  grid-row: span 5;
}

.mosaic-item.wide {
  grid-column: span 8;
  grid-row: span 4;
}

.info-grid,
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.info-card,
.amenity-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(68, 40, 31, 0.08);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.amenity-card img {
  aspect-ratio: 1.15;
  border-radius: 18px;
}

.image-strip,
.image-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.image-strip figure,
.image-band figure {
  min-height: 380px;
}

.image-band figure.wide {
  grid-column: span 2;
}

.facility-panel {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 241, 0.84);
  box-shadow: var(--shadow);
  border: 1px solid rgba(68, 40, 31, 0.08);
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.facility-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(143, 60, 45, 0.08);
  color: var(--accent-deep);
  font-weight: 700;
}

.tasting-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.tasting-gallery figure {
  min-height: 520px;
}

.tasting-copy {
  display: grid;
  align-content: center;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.92), rgba(244, 233, 220, 0.88));
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0 56px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 1.7rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--accent);
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .button,
  .site-nav a,
  .menu-toggle {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1060px) {
  .feature-cards,
  .split-story,
  .info-grid,
  .amenity-grid,
  .tasting-gallery,
  .intro-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .split-story.reverse .story-image,
  .split-story.reverse .story-copy {
    order: initial;
  }

  .hero-content {
    padding: 72px 42px 0;
  }

  .hero-home .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-home .hero-content {
    padding: 0;
    transform: translateY(-18px);
  }

  .hero-panel {
    justify-self: start;
    margin: 28px 0 0 42px;
  }

  .hero-home .hero-panel {
    margin: 0;
  }

  .story-image,
  .tasting-gallery figure {
    min-height: 420px;
  }

  .mosaic {
    grid-auto-rows: 72px;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .site-header {
    align-items: center;
    padding: 16px 0;
  }

  .site-header::before {
    inset: 4px -10px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 28px));
    padding: 12px;
    border: 1px solid rgba(68, 40, 31, 0.08);
    border-radius: 22px;
    background: rgba(247, 240, 231, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding-bottom: 24px;
  }

  .hero-home {
    padding: 96px 0 24px;
  }

  .hero-inner {
    width: var(--container);
    min-height: auto;
    gap: 18px;
  }

  .hero-content,
  .page-hero-copy {
    padding: 92px 24px 24px;
  }

  .hero-home .hero-content {
    padding: 0;
    transform: translateY(-12px);
  }

  .hero-pretitle {
    margin-bottom: 8px;
  }

  .hero-content h1,
  .page-hero-copy h1 {
    line-height: 1;
  }

  .hero-panel {
    margin: 18px 24px 0;
    max-width: none;
  }

  .hero-home .hero-panel {
    margin: 0;
  }

  .section,
  .page-hero {
    padding: 78px 0;
  }

  .feature-card img,
  .amenity-card img,
  .image-strip figure,
  .image-band figure,
  .story-image {
    min-height: 300px;
  }

  .feature-card-copy {
    margin: -54px 16px 0;
    padding: 20px;
  }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .mosaic-item,
  .mosaic-item.tall,
  .mosaic-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .image-strip,
  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band figure.wide {
    grid-column: span 1;
  }

  .highlight-band,
  .facility-panel,
  .tasting-copy,
  .info-card,
  .amenity-card {
    padding: 26px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
  }
}
