:root {
  --ink: #252628;
  --muted: #4f5552;
  --paper: #ffffff;
  --paper-soft: #f5f1e8;
  --mist: #f0f1f3;
  --line: #e5e3dd;
  --sage: #566f65;
  --sage-deep: #314f45;
  --yellow: #fbc80e;
  --burgundy: #a0303d;
  --burgundy-soft: #f4e4e6;
  --shadow: 0 18px 44px rgba(50, 51, 53, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: "Atkinson Hyperlegible", "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(90, 25, 33, 0.32);
  background: rgba(160, 48, 61, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(90, 25, 33, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  background: var(--paper-soft);
  color: var(--burgundy);
  font-weight: 900;
  letter-spacing: 0.04em;
  border: 2px solid rgba(245, 241, 232, 0.86);
  border-radius: 8px;
}

.brand-logo {
  flex: 0 0 auto;
  width: 3.55rem;
  height: 3.55rem;
  border: 2px solid rgba(245, 241, 232, 0.9);
  border-radius: 8px;
  background: var(--paper-soft);
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(90, 25, 33, 0.16);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Segoe UI", "Atkinson Hyperlegible", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  color: var(--paper-soft);
  line-height: 1.1;
}

.brand small {
  display: block;
  color: rgba(245, 241, 232, 0.8);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.58rem 0.78rem;
  color: rgba(245, 241, 232, 0.88);
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 150ms ease, color 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(245, 241, 232, 0.14);
  color: var(--paper);
}

.site-nav .nav-button {
  border: 1px solid var(--paper-soft);
  background: var(--paper-soft);
  color: var(--burgundy);
}

.site-nav .nav-button:hover,
.site-nav .nav-button:focus-visible {
  background: var(--paper);
  color: var(--burgundy);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(44, 45, 47, 0.5), rgba(44, 45, 47, 0.14) 58%, rgba(44, 45, 47, 0.02)),
    linear-gradient(0deg, rgba(44, 45, 47, 0.32), transparent 50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 4rem;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero-kicker {
  color: #ffe47a;
}

.hero-kicker {
  max-width: 42rem;
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 900;
  line-height: 1.25;
}

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

h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.4rem;
  color: var(--sage-deep);
  font-size: 1.35rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 58ch;
  font-size: 1.12rem;
}

.hero-actions,
.contact-band,
.site-footer,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--burgundy);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(160, 48, 61, 0.18);
}

.button-primary {
  border-color: rgba(160, 48, 61, 0.26);
  background: var(--paper-soft);
  color: var(--burgundy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--paper);
}

.button-secondary {
  border-color: rgba(245, 241, 232, 0.82);
  background: rgba(245, 241, 232, 0.88);
  color: var(--burgundy);
  backdrop-filter: blur(8px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--paper);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 2rem));
  margin: -2rem auto 4.5rem;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    url("assets/Textures/6.png") left top / 54rem auto no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.facts article {
  min-height: 8rem;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  border-top: 4px solid var(--burgundy);
}

.facts article:last-child {
  border-right: 0;
}

.facts strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Segoe UI", "Atkinson Hyperlegible", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--burgundy);
}

.facts span {
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 5.5rem;
}

.split-section,
.team-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}

.split-section {
  position: relative;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  border: 1px solid rgba(229, 227, 221, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    url("assets/Textures/8.png") right center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(50, 51, 53, 0.05);
  overflow: hidden;
}

.split-section::before {
  content: none;
}

.split-section > * {
  position: relative;
  z-index: 1;
}

.section-copy p,
.team-copy p,
.contact-band p {
  max-width: 62ch;
  color: var(--muted);
}

.value-list {
  display: grid;
  gap: 0.8rem;
}

.value-list article,
.day-grid article {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--burgundy);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.87)),
    url("assets/Textures/9.png") center / cover no-repeat;
  box-shadow: 0 12px 30px rgba(50, 51, 53, 0.05);
}

.value-list article:nth-child(2),
.day-grid article:nth-child(2),
.day-grid article:nth-child(5) {
  border-top-color: var(--sage);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("assets/Textures/6.png") left center / cover no-repeat;
}

.value-list article:nth-child(3),
.day-grid article:nth-child(3),
.day-grid article:nth-child(6) {
  border-top-color: var(--yellow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("assets/Textures/7.png") right center / cover no-repeat;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 5.5rem;
  gap: 0.85rem;
  border: 0;
}

.photo-band figure,
.team-photo {
  margin: 0;
}

.photo-band img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: 8px;
}

.day-section {
  padding: 4rem clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(240, 241, 243, 0.96), rgba(240, 241, 243, 0.84)),
    url("assets/Textures/9.png") right center / cover no-repeat;
  border-left: 0;
  border-radius: 8px;
}

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

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

.offers-section {
  padding: clamp(1.2rem, 4vw, 2.4rem);
  border: 1px solid rgba(229, 227, 221, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    url("assets/Textures/8.png") right top / cover no-repeat;
  box-shadow: 0 18px 44px rgba(50, 51, 53, 0.05);
}

.offers-section .section-heading p:not(.eyebrow),
.english-section p {
  max-width: 62ch;
  color: var(--muted);
}

.offers-layout {
  display: grid;
  gap: 0.9rem;
}

.offer-highlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(160, 48, 61, 0.16);
  border-left: 6px solid var(--burgundy);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 241, 232, 0.86)),
    url("assets/Textures/7.png") right center / cover no-repeat;
  box-shadow: 0 12px 30px rgba(50, 51, 53, 0.05);
}

.offer-highlight > div {
  align-self: center;
  padding: 0.6rem;
}

.offer-highlight h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.offer-highlight p {
  max-width: 62ch;
  color: var(--muted);
}

.offer-media {
  min-height: 22rem;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

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

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.offer-grid article {
  min-height: 12rem;
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--burgundy);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("assets/Textures/9.png") center / cover no-repeat;
  box-shadow: 0 12px 30px rgba(50, 51, 53, 0.05);
}

.offer-grid article:nth-child(3n + 2) {
  border-top-color: var(--sage);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("assets/Textures/6.png") left center / cover no-repeat;
}

.offer-grid article:nth-child(3n) {
  border-top-color: var(--yellow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("assets/Textures/7.png") right center / cover no-repeat;
}

.offer-grid h3 {
  color: var(--sage-deep);
}

.offer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  position: relative;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  border: 1px solid rgba(229, 227, 221, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    url("assets/Textures/6.png") left top / 72rem auto no-repeat;
  box-shadow: 0 18px 44px rgba(50, 51, 53, 0.05);
  overflow: hidden;
}

.gallery-section .section-heading p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-card {
  margin: 0;
  border: 1px solid rgba(229, 227, 221, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("assets/Textures/9.png") center / cover no-repeat;
  box-shadow: 0 12px 30px rgba(50, 51, 53, 0.06);
  overflow: hidden;
}

.gallery-card-large,
.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card-large img {
  aspect-ratio: 4 / 3;
}

.gallery-card-wide img {
  aspect-ratio: 2 / 1;
}

.gallery-card figcaption {
  padding: 0.75rem 0.85rem;
  color: var(--sage-deep);
  font-weight: 850;
}

.gallery-more-link {
  margin-top: 1rem;
}

time {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--burgundy);
  font-weight: 900;
}

.team-section {
  align-items: center;
}

.team-copy {
  padding: clamp(1.2rem, 4vw, 2.2rem);
  border: 1px solid rgba(229, 227, 221, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    url("assets/Textures/6.png") left center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(50, 51, 53, 0.05);
}

.team-photo {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  color: var(--burgundy);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.english-section {
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border: 1px solid rgba(160, 48, 61, 0.18);
  border-left: 6px solid var(--burgundy);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 241, 232, 0.86)),
    url("assets/Textures/8.png") right center / cover no-repeat;
  box-shadow: var(--shadow);
}

.english-section h2 {
  max-width: 15ch;
}

.english-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.contact-band {
  justify-content: space-between;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 4rem;
  padding: 2rem;
  border: 1px solid rgba(160, 48, 61, 0.18);
  border-left: 6px solid var(--burgundy);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 241, 232, 0.86) 100%),
    url("assets/Textures/7.png") right center / cover no-repeat;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-band .eyebrow {
  color: var(--burgundy);
}

.contact-band h2 {
  margin-bottom: 0.4rem;
}

.site-footer {
  justify-content: space-between;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer a {
  color: var(--sage-deep);
  font-weight: 800;
  text-decoration: none;
}

.site-footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sage-deep);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.site-footer button:hover,
.site-footer button:focus-visible {
  color: var(--burgundy);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(160, 48, 61, 0.18);
  border-left: 6px solid var(--burgundy);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    url("assets/Textures/8.png") right center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(50, 51, 53, 0.16);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-title {
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-weight: 900;
}

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-secondary {
  border-color: rgba(160, 48, 61, 0.28);
  background: var(--paper-soft);
  color: var(--burgundy);
}

@media (max-width: 880px) {
  .site-header,
  .split-section,
  .team-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    align-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

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

  .offer-highlight {
    grid-template-columns: 1fr;
  }

  .photo-band {
    grid-template-columns: 1fr;
  }

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

  .photo-band img {
    height: 18rem;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 3.1rem;
    height: 3.1rem;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-copy {
    padding-bottom: 3rem;
  }

  .hero-actions,
  .button,
  .facts,
  .day-grid,
  .english-actions {
    width: 100%;
  }

  .facts,
  .day-grid,
  .offer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-large,
  .gallery-card-wide {
    grid-column: span 1;
  }

  .facts article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts article:last-child {
    border-bottom: 0;
  }
}
