:root {
  --bg: #f7f6f2;
  --paper: #fbfaf6;
  --ink: #111111;
  --muted: #625c55;
  --line: rgba(17, 17, 17, 0.13);

  --green-dark: #0f6f4e;
  --green-soft: #9eb79f;
  --sage: #b3be7a;
  --taupe: #9d948b;
  --sand: #d7c7b4;

  --shadow: 0 24px 80px rgba(17, 17, 17, 0.10);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(179, 190, 122, 0.20), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(215, 199, 180, 0.32), transparent 36rem),
    linear-gradient(180deg, var(--bg), var(--paper) 42%, var(--bg));
  font-family: "Cormorant Garamond", Georgia, serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(17,17,17,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

a {
  color: inherit;
}

.site-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
}

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(251, 250, 246, 0.42), rgba(251, 250, 246, 0.68)),
    url("assets/hero-hands-sea-final.jpg");
  background-size: cover;
  background-position: center 56%;
  box-shadow: var(--shadow);
}

.hero::after {
  content: none;
}

.nav {
  position: fixed;
  top: 18px;
  right: 30px;
  left: auto;
  transform: none;
  width: auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

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

.brand img {
  width: 76px;
  height: auto;
  display: block;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: .04em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(17, 17, 17, 0.10);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.62);
  backdrop-filter: blur(14px);
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  font-family: Inter, system-ui, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  background: rgba(251, 250, 246, 0.62);
  font-size: 1.15rem;
}

.hero-content {
  text-shadow: 0 1px 22px rgba(251, 250, 246, 0.72);
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(92px, 14vh, 150px) 34px 64px;
  text-align: center;
}

.hero-logo {
  width: clamp(86px, 12vw, 128px);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 8px 18px rgba(17, 17, 17, 0.08));
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  font-family: Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--green-dark);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(4.1rem, 10vw, 8.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: .88;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.4vw, 4.6rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: .02em;
}

.date {
  margin-bottom: 28px;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  letter-spacing: .03em;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  line-height: 1.48;
}

.section {
  padding: clamp(58px, 8vw, 98px) clamp(12px, 3vw, 32px);
}

.intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro p,
.location-copy p,
.info-block p,
.section-heading > p,
.heading-copy {
  color: var(--muted);
  font-size: clamp(1.17rem, 1.8vw, 1.48rem);
  line-height: 1.58;
}

.monogram-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 620px;
  margin: 0 auto 38px;
}

.monogram-line span {
  height: 1px;
  background: var(--line);
}

.monogram-line img {
  width: 82px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
  margin-bottom: 30px;
}

.section-heading > p,
.heading-copy {
  max-width: 520px;
  margin-bottom: 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fact-card,
.hotel-card,
.image-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.78);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.07);
}

.fact-card {
  min-height: 210px;
  padding: 28px 24px;
  display: grid;
  align-content: start;
  gap: 20px;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 111, 78, 0.06);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  color: var(--green-dark);
}

.fact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.4;
}

.palette {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}

.palette span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--c);
  border: 1px solid rgba(17,17,17,.08);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.location-copy {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.78);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.07);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.button.secondary {
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  background: rgba(15,111,78,.04);
}

.button:hover {
  background: var(--green-dark);
  color: var(--paper);
  transform: translateY(-2px);
}

.location-image {
  min-height: 450px;
  background-image:
    linear-gradient(rgba(17,17,17,.04), rgba(17,17,17,.04)),
    url("assets/location-birkenheide-new.png");
  background-size: cover;
  background-position: center 58%;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hotel-card {
  min-height: 138px;
  padding: 24px 20px;
  text-align: center;
}

.hotel-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.36;
}

.info-block {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.info-block strong {
  color: var(--green-dark);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px 32px 44px;
  color: var(--muted);
}

.footer img {
  width: 54px;
}

.footer p {
  margin: 0;
  font-size: 1.16rem;
}

.footer a {
  font-family: Inter, system-ui, sans-serif;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-shell {
    padding: 10px;
  }

  .hero {
    min-height: auto;
    border-radius: 26px;
  }

  .nav {
    top: 10px;
    left: auto;
    right: 14px;
    width: auto;
    transform: none;
    margin: 0;
    padding: 8px 0;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    background: rgba(251, 250, 246, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 18px;
  }

  .hero-content {
    padding: 70px 20px 88px;
  }

  .section-heading,
  .split {
    grid-template-columns: 1fr;
    display: grid;
  }

  .facts-grid,
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .fact-card {
    min-height: auto;
  }

  .location-image {
    min-height: 320px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding-inline: 18px;
  }
}


.hotel-heading {
  align-items: start;
  margin-bottom: 10px;
}

.hotel-heading > div {
  max-width: 100%;
}

.heading-copy {
  margin: 4px 0 0;
}


.address {
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(251, 250, 246, 0.68);
  color: var(--ink) !important;
  font-weight: 600;
}

.full-width-copy {
  max-width: none;
  width: 100%;
  margin: -12px 0 30px;
}


.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.subpage-header {
  min-height: 42vh;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(251, 250, 246, 0.72), rgba(251, 250, 246, 0.88)),
    url("assets/hero-hands-sea-final.jpg");
  background-size: cover;
  background-position: center 58%;
  box-shadow: var(--shadow);
}

.subpage-title {
  padding: clamp(54px, 8vw, 88px) 34px;
  text-align: center;
}

.subpage-title h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
}

.legal-page h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  text-transform: none;
  letter-spacing: 0;
}

.legal-page p,
.legal-note {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.65;
}

.legal-note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(251, 250, 246, 0.72);
}

.static-nav {
  display: flex;
}

@media (max-width: 900px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .subpage-header {
    margin: 0;
    border-radius: 26px;
  }

  .static-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .static-nav a {
    padding: 10px 14px;
  }
}


.icon {
  font-size: 1.1rem;
  line-height: 1;
}

.icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .brand img {
    width: 74px;
  }
}


.faq {
  max-width: 920px;
  margin: 0 auto;
}

.faq .section-heading {
  justify-content: center;
  text-align: center;
  margin-bottom: 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.78);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 24px 64px 24px 26px;
  list-style: none;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: -4px 26px 26px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.65vw, 1.35rem);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .faq-list summary {
    padding: 22px 58px 22px 22px;
    font-size: 1.22rem;
  }

  .faq-list p {
    margin: -2px 22px 22px;
  }
}


section[id] {
  scroll-margin-top: 112px;
}


.subpage-title {
  padding-top: clamp(118px, 14vw, 150px);
}


.nav .brand {
  display: none;
}

.nav-links {
  background: rgba(251, 250, 246, 0.42);
  border-color: rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(12px);
}

.nav-links a {
  text-shadow: 0 1px 10px rgba(251, 250, 246, 0.82);
}


@media (max-width: 900px) {
  .nav .brand {
    display: none;
  }

  .nav {
    justify-content: flex-end;
  }
}


/* Final mobile navigation: compact glass dropdown, overrides previous nav styles */
@media (max-width: 900px) {
  body .site-shell .nav {
    position: fixed !important;
    top: 14px !important;
    right: 14px !important;
    left: auto !important;
    width: auto !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2000 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    overflow: visible !important;
  }

  body .site-shell .nav .brand {
    display: none !important;
  }

  body .site-shell .nav-toggle {
    display: inline-grid !important;
    place-items: center !important;
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 auto !important;
    border-radius: 999px !important;
    border: 1px solid rgba(17, 17, 17, 0.10) !important;
    background: rgba(251, 250, 246, 0.76) !important;
    color: var(--ink) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 14px 38px rgba(17, 17, 17, 0.10) !important;
  }

  body .site-shell .nav-links {
    position: absolute !important;
    top: 56px !important;
    right: 0 !important;
    left: auto !important;
    width: 218px !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0 !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
    padding: 10px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    background: rgba(251, 250, 246, 0.84) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 20px 60px rgba(17, 17, 17, 0.14) !important;
  }

  body .site-shell .nav-links.open {
    display: flex !important;
  }

  body .site-shell .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    text-align: left !important;
    white-space: nowrap !important;
    background: transparent !important;
    font-size: 0.72rem !important;
  }

  body .site-shell .nav-links a:hover,
  body .site-shell .nav-links a.active {
    background: rgba(15, 111, 78, 0.07) !important;
    color: var(--green-dark) !important;
  }

  body .site-shell .nav-links a::after {
    left: 14px !important;
    right: auto !important;
    width: 34px !important;
    bottom: 7px !important;
  }
}


/* Final mobile title and icon consistency fixes */
.icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .hero-content h1 {
    white-space: nowrap;
    font-size: clamp(3.05rem, 13.8vw, 4.4rem);
    letter-spacing: -0.055em;
  }
}

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: clamp(2.75rem, 13.2vw, 3.75rem);
  }
}
