:root {
  --bg: #f2f8f9;
  --bg-soft: #e4f1f3;
  --bg-dark: #0a1f2e;
  --bg-dark-2: #0e2a3a;
  --surface: #ffffff;
  --forest: #1b4d3e;
  --blue: #2b7a9b;
  --accent: #2ec4b6;
  --accent-deep: #1a9e93;
  --text: #0d1b24;
  --text-light: #eaf4f6;
  --muted: #5a7a84;
  --muted-light: #9bb4bc;
  --line: rgba(13, 27, 36, 0.1);
  --line-light: rgba(234, 244, 246, 0.14);
  --shadow: 0 18px 50px rgba(10, 31, 46, 0.12);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(46, 196, 182, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(43, 122, 155, 0.14), transparent 50%),
    linear-gradient(180deg, #f7fbfc 0%, var(--bg) 40%, #eef6f7 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(242, 248, 249, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--forest);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: #04131a;
  box-shadow: 0 10px 28px rgba(46, 196, 182, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(43, 122, 155, 0.32);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(234, 244, 246, 0.55);
  color: var(--text-light);
}

.btn-ghost:hover {
  background: rgba(234, 244, 246, 0.08);
}

.btn-outline {
  background: transparent;
  border-color: rgba(27, 77, 62, 0.35);
  color: var(--forest);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: var(--text-light);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 46, 0.35) 0%, rgba(10, 31, 46, 0.72) 55%, rgba(10, 31, 46, 0.92) 100%),
    linear-gradient(90deg, rgba(27, 77, 62, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.5rem;
  max-width: 760px;
  animation: rise 0.9s ease both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1,
.page-hero h1,
.section-title {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  text-transform: uppercase;
}

.hero p {
  font-size: 1.08rem;
  color: rgba(234, 244, 246, 0.86);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.page-hero {
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(135deg, rgba(46, 196, 182, 0.12), transparent 45%),
    linear-gradient(180deg, #e8f4f6, var(--bg));
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 16ch;
}

.page-hero p {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.05rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
  color: var(--text-light);
}

.section-accent {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(46, 196, 182, 0.35), transparent 60%),
    linear-gradient(120deg, #145a63 0%, #1b4d3e 45%, #0f3648 100%);
  color: var(--text-light);
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-head p,
.section-accent .section-head p,
.section-dark .lead,
.section-accent .lead {
  color: var(--muted-light);
}

.media-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.media-block.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.media-block.reverse .media-copy {
  order: -1;
}

.media-frame {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(46, 196, 182, 0.18);
  border-radius: inherit;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature {
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 196, 182, 0.45);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.2), rgba(43, 122, 155, 0.18));
  color: var(--forest);
  font-size: 1.2rem;
}

.feature h3,
.panel h3,
.menu-card h3,
.review h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.55rem;
}

.feature p,
.panel p,
.menu-card p,
.review p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.panel {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(10, 31, 46, 0.42);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 196, 182, 0.55);
}

.panel p {
  color: var(--muted-light);
  margin-bottom: 1.2rem;
}

.gallery-wide {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-wide img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.reviews-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.review {
  display: none;
  animation: fade 0.45s ease;
}

.review.active {
  display: block;
}

.review p {
  font-size: 1.2rem;
  color: var(--text-light);
  font-family: var(--font-display);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.review cite {
  font-style: normal;
  color: var(--accent);
  font-size: 0.95rem;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(234, 244, 246, 0.28);
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
}

.news-grid,
.menu-grid,
.split-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-card,
.menu-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover,
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.news-card img,
.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card .body,
.menu-card .body {
  padding: 1.25rem 1.3rem 1.45rem;
}

.meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.45rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.3rem 0 1.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.16);
}

.section-dark .check-list li {
  color: var(--muted-light);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.03);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.stat span {
  color: var(--muted-light);
  font-size: 0.95rem;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #fbfdfe;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(46, 196, 182, 0.35);
  border-color: var(--accent);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-dark), #123447);
  color: var(--text-light);
}

.info-card h3 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
}

.info-card p {
  margin: 0 0 0.8rem;
  color: var(--muted-light);
}

.info-card a {
  color: var(--accent);
}

.legal {
  max-width: 820px;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2rem 0 0.8rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  list-style: disc;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0 1rem;
}

.site-footer {
  background: #071722;
  color: var(--text-light);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

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

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-col a {
  display: block;
  color: var(--muted-light);
  margin-bottom: 0.55rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.9rem;
  color: var(--muted-light);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: none;
  max-width: 720px;
  margin-inline: auto;
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  background: rgba(10, 31, 46, 0.96);
  color: var(--text-light);
  border: 1px solid rgba(46, 196, 182, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.cookie-banner.show {
  display: block;
  animation: rise 0.4s ease;
}

.cookie-banner p {
  margin: 0 0 1rem;
  color: var(--muted-light);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(242, 248, 249, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .nav .btn {
    padding: 0.85rem 0.6rem;
  }

  .media-block,
  .media-block.reverse,
  .contact-grid,
  .footer-grid,
  .feature-grid,
  .panel-grid,
  .news-grid,
  .menu-grid,
  .split-cards,
  .stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .media-block.reverse .media-copy {
    order: 0;
  }

  .hero-content {
    padding-top: 6rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: 78vh;
  }
}
