:root {
  --lake: #2c5f7c;
  --lake-dark: #1e4458;
  --lake-light: #d8e8f0;
  --oat: #f4ece0;
  --oat-dark: #e8dcc8;
  --rye: #3d2e24;
  --rye-soft: #5c4a3d;
  --crust: #b8894a;
  --crust-light: #d4b078;
  --swiss-red: #c8102e;
  --white: #ffffff;
  --shadow: rgba(30, 68, 88, 0.14);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Lato", "Segoe UI", sans-serif;
  --radius: 4px;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--rye);
  background: var(--oat);
  background-image:
    linear-gradient(90deg, rgba(44, 95, 124, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(44, 95, 124, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

a {
  color: var(--lake-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--swiss-red);
}

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

.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--swiss-red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 16px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--rye);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo small {
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--lake);
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: var(--lake-light);
  border: 2px solid var(--lake);
  border-radius: var(--radius);
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--lake-dark);
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.35rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rye-soft);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--lake-dark);
  border-bottom-color: var(--crust);
}

.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(30, 68, 88, 0.88) 0%, rgba(30, 68, 88, 0.55) 55%, rgba(61, 46, 36, 0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 4rem 0;
  max-width: 640px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.12rem;
  margin-bottom: 1.75rem;
  opacity: 0.95;
}

.hero-badge {
  display: inline-block;
  background: var(--swiss-red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--crust);
  color: var(--white);
  border-color: var(--crust);
}

.btn-primary:hover {
  background: var(--crust-light);
  border-color: var(--crust-light);
  color: var(--rye);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  margin-left: 0.5rem;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--lake-dark);
}

.btn-secondary {
  background: var(--lake);
  color: var(--white);
  border-color: var(--lake);
}

.btn-secondary:hover {
  background: var(--lake-dark);
  border-color: var(--lake-dark);
  color: var(--white);
}

section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--lake-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--rye-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.section-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--swiss-red);
  margin-bottom: 0.4rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--oat-dark);
  border-top: 4px solid var(--lake);
  overflow: hidden;
  box-shadow: 0 4px 18px var(--shadow);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-3px);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--rye);
}

.card-body p {
  font-size: 0.95rem;
  color: var(--rye-soft);
  margin-bottom: 0.75rem;
}

.card-body a {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rounded-img {
  border-radius: var(--radius);
  box-shadow: 0 6px 24px var(--shadow);
}

.page-header {
  background: var(--lake-dark);
  color: var(--white);
  padding: 3rem 0;
  border-bottom: 4px solid var(--crust);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 620px;
}

.product-list {
  list-style: none;
  margin: 1.5rem 0;
}

.product-list li {
  padding: 1rem 0;
  border-bottom: 1px dashed var(--oat-dark);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-list li strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--rye);
}

.product-list .price {
  font-weight: 700;
  color: var(--lake-dark);
  white-space: nowrap;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th,
.hours-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--oat-dark);
}

.hours-table th {
  background: var(--lake-light);
  font-weight: 700;
  color: var(--lake-dark);
}

.hours-table .closed {
  color: var(--swiss-red);
  font-weight: 600;
}

.contact-info {
  background: var(--lake-light);
  border-left: 4px solid var(--lake);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
  color: var(--lake-dark);
}

.testimonial {
  background: var(--oat);
  border-left: 4px solid var(--crust);
  padding: 1.5rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--rye);
  margin-bottom: 0.75rem;
}

.testimonial cite {
  font-size: 0.88rem;
  color: var(--rye-soft);
  font-style: normal;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--rye);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 2px solid var(--oat-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--rye);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lake);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--lake-dark);
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.site-footer {
  background: var(--rye);
  color: var(--oat);
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: var(--crust-light);
}

.site-footer a:hover {
  color: var(--white);
}

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

.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--rye);
  color: var(--oat);
  padding: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.92rem;
}

.cookie-text a {
  color: var(--crust-light);
  text-decoration: underline;
}

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

.cookie-banner .btn-accept {
  background: var(--crust);
  color: var(--white);
  border: none;
}

.cookie-banner .btn-decline {
  background: transparent;
  color: var(--oat);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cookie-banner .btn-settings {
  background: var(--lake);
  color: var(--white);
  border: none;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 68, 88, 0.65);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cookie-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
  color: var(--lake-dark);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--oat-dark);
}

.cookie-option label {
  font-weight: 700;
  display: block;
}

.cookie-option span {
  font-size: 0.85rem;
  color: var(--rye-soft);
}

.cookie-modal-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--swiss-red);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .main-nav.open {
    max-height: 420px;
    box-shadow: 0 8px 20px var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    position: relative;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
