/* Design DNA: Form hero with reservation fields under elegant serif headline; deep herb green + linen; refined farm-to-table mood */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --ot-herb: #2F5D3A;
  --ot-herb-dark: #1E3D26;
  --ot-linen: #F4EFE6;
  --ot-linen-dark: #E8E0D2;
  --ot-wine: #7A2E3B;
  --ot-wine-dark: #5C2230;
  --ot-charcoal: #2A2A2A;
  --ot-charcoal-light: #4A4A4A;
  --ot-white: #FFFFFF;
  --ot-shadow: rgba(42, 42, 42, 0.12);
  --ot-radius: 4px;
  --ot-transition: 0.3s ease;
  --ot-max-width: 1200px;
  --ot-header-h: 72px;
  --ot-font-serif: 'Playfair Display', Georgia, serif;
  --ot-font-sans: 'Lato', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ot-font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ot-charcoal);
  background-color: var(--ot-linen);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ot-herb);
  text-decoration: none;
  transition: color var(--ot-transition);
}

a:hover {
  color: var(--ot-wine);
}

h1, h2, h3, h4 {
  font-family: var(--ot-font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ot-charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1rem; }

.ot-container {
  width: 100%;
  max-width: var(--ot-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.ot-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ot-charcoal);
  height: var(--ot-header-h);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.ot-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.ot-logo {
  font-family: var(--ot-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ot-linen);
  letter-spacing: 0.02em;
}

.ot-logo span {
  color: var(--ot-herb);
  font-style: italic;
}

.ot-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.ot-nav a {
  color: var(--ot-linen);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

.ot-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ot-herb);
  transition: width var(--ot-transition);
}

.ot-nav a:hover,
.ot-nav a.ot-nav__active {
  color: var(--ot-linen);
}

.ot-nav a:hover::after,
.ot-nav a.ot-nav__active::after {
  width: 100%;
}

.ot-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ot-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ot-linen);
  transition: var(--ot-transition);
}

/* Hero */
.ot-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--ot-herb-dark);
  overflow: hidden;
}

.ot-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.ot-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 61, 38, 0.85) 0%, rgba(42, 42, 42, 0.6) 100%);
}

.ot-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.ot-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ot-hero__text {
  color: var(--ot-linen);
}

.ot-hero__text h1 {
  color: var(--ot-linen);
  margin-bottom: 1rem;
}

.ot-hero__tagline {
  font-family: var(--ot-font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ot-linen-dark);
  margin-bottom: 0.5rem;
}

.ot-hero__desc {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 480px;
}

/* Reservation Form */
.ot-reserve-form {
  background: var(--ot-linen);
  padding: 2rem;
  border-radius: var(--ot-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.ot-reserve-form h3 {
  margin-bottom: 1.25rem;
  color: var(--ot-herb);
}

.ot-form-group {
  margin-bottom: 1rem;
}

.ot-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ot-charcoal-light);
  margin-bottom: 0.4rem;
}

.ot-form-group input,
.ot-form-group select,
.ot-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ot-linen-dark);
  border-radius: var(--ot-radius);
  font-family: var(--ot-font-sans);
  font-size: 1rem;
  background: var(--ot-white);
  color: var(--ot-charcoal);
  transition: border-color var(--ot-transition);
}

.ot-form-group input:focus,
.ot-form-group select:focus,
.ot-form-group textarea:focus {
  outline: none;
  border-color: var(--ot-herb);
}

.ot-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ot-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--ot-font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--ot-radius);
  cursor: pointer;
  transition: background var(--ot-transition), color var(--ot-transition), transform 0.15s ease;
}

.ot-btn--primary {
  background: var(--ot-herb);
  color: var(--ot-linen);
  width: 100%;
}

.ot-btn--primary:hover {
  background: var(--ot-herb-dark);
}

.ot-btn--wine {
  background: var(--ot-wine);
  color: var(--ot-linen);
}

.ot-btn--wine:hover {
  background: var(--ot-wine-dark);
}

.ot-btn--outline {
  background: transparent;
  color: var(--ot-herb);
  border: 2px solid var(--ot-herb);
}

.ot-btn--outline:hover {
  background: var(--ot-herb);
  color: var(--ot-linen);
}

/* Sections */
.ot-section {
  padding: 5rem 0;
}

.ot-section--alt {
  background: var(--ot-white);
}

.ot-section--dark {
  background: var(--ot-charcoal);
  color: var(--ot-linen);
}

.ot-section--dark h2,
.ot-section--dark h3 {
  color: var(--ot-linen);
}

.ot-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.ot-section__header p {
  color: var(--ot-charcoal-light);
  font-size: 1.05rem;
}

.ot-section--dark .ot-section__header p {
  color: var(--ot-linen-dark);
}

.ot-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ot-herb);
  margin-bottom: 0.75rem;
}

.ot-section--dark .ot-eyebrow {
  color: var(--ot-linen-dark);
}

/* Cards Grid */
.ot-grid {
  display: grid;
  gap: 2rem;
}

.ot-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ot-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ot-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ot-card {
  background: var(--ot-white);
  border-radius: var(--ot-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--ot-shadow);
  transition: transform var(--ot-transition), box-shadow var(--ot-transition);
}

.ot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--ot-shadow);
}

.ot-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ot-card__body {
  padding: 1.5rem;
}

.ot-card__body h3 {
  margin-bottom: 0.5rem;
}

.ot-card__price {
  font-family: var(--ot-font-serif);
  font-size: 1.2rem;
  color: var(--ot-wine);
  font-weight: 700;
}

.ot-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ot-herb);
  background: rgba(47, 93, 58, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

/* About split */
.ot-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ot-split__img {
  border-radius: var(--ot-radius);
  box-shadow: 0 8px 32px var(--ot-shadow);
}

/* Farm stories */
.ot-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.ot-story:nth-child(even) {
  direction: rtl;
}

.ot-story:nth-child(even) > * {
  direction: ltr;
}

.ot-story__img {
  border-radius: var(--ot-radius);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.ot-story__label {
  font-family: var(--ot-font-serif);
  font-style: italic;
  color: var(--ot-wine);
  margin-bottom: 0.5rem;
}

/* CTA Banner */
.ot-cta {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.ot-cta__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.ot-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 93, 58, 0.82);
}

.ot-cta__content {
  position: relative;
  z-index: 2;
  color: var(--ot-linen);
  max-width: 600px;
  margin: 0 auto;
}

.ot-cta__content h2 {
  color: var(--ot-linen);
  margin-bottom: 1rem;
}

.ot-cta__content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact */
.ot-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.ot-contact-info {
  padding: 2rem;
  background: var(--ot-herb);
  color: var(--ot-linen);
  border-radius: var(--ot-radius);
}

.ot-contact-info h3 {
  color: var(--ot-linen);
  margin-bottom: 1.5rem;
}

.ot-contact-item {
  margin-bottom: 1.25rem;
}

.ot-contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.ot-contact-item a {
  color: var(--ot-linen);
}

.ot-contact-item a:hover {
  color: var(--ot-linen-dark);
}

/* Privacy */
.ot-privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.ot-privacy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.ot-privacy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.ot-privacy-content ul {
  margin: 0 0 1rem 1.5rem;
}

.ot-privacy-content li {
  margin-bottom: 0.5rem;
}

/* Page hero (inner pages) */
.ot-page-hero {
  background: var(--ot-herb-dark);
  color: var(--ot-linen);
  padding: 4rem 0 3rem;
  text-align: center;
}

.ot-page-hero h1 {
  color: var(--ot-linen);
}

.ot-page-hero p {
  opacity: 0.85;
  max-width: 560px;
  margin: 0.75rem auto 0;
}

/* Menu filters */
.ot-menu-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.ot-menu-filter {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--ot-herb);
  color: var(--ot-herb);
  border-radius: var(--ot-radius);
  cursor: pointer;
  transition: var(--ot-transition);
}

.ot-menu-filter:hover,
.ot-menu-filter.ot-menu-filter--active {
  background: var(--ot-herb);
  color: var(--ot-linen);
}

/* Footer */
.ot-footer {
  background: var(--ot-charcoal);
  color: var(--ot-linen);
  padding: 4rem 0 2rem;
}

.ot-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.ot-footer__col h4 {
  font-family: var(--ot-font-serif);
  color: var(--ot-linen);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.ot-footer__col ul {
  list-style: none;
}

.ot-footer__col li {
  margin-bottom: 0.6rem;
}

.ot-footer__col a {
  color: rgba(244, 239, 230, 0.75);
  font-size: 0.9rem;
}

.ot-footer__col a:hover {
  color: var(--ot-linen);
}

.ot-footer__col p {
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.75);
  line-height: 1.7;
}

.ot-footer__bottom {
  border-top: 1px solid rgba(244, 239, 230, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.5);
}

/* Cookie Banner */
.ot-cookie {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 200;
  max-width: 380px;
  background: var(--ot-white);
  border-radius: var(--ot-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 1.5rem;
  display: none;
}

.ot-cookie.ot-cookie--visible {
  display: block;
}

.ot-cookie h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.ot-cookie p {
  font-size: 0.85rem;
  color: var(--ot-charcoal-light);
  margin-bottom: 1rem;
}

.ot-cookie__actions {
  display: flex;
  gap: 0.75rem;
}

.ot-cookie__actions .ot-btn {
  flex: 1;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
}

/* Values strip */
.ot-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.ot-value__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.ot-value h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.ot-value p {
  font-size: 0.9rem;
  color: var(--ot-charcoal-light);
}

/* Gallery */
.ot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ot-gallery img {
  border-radius: var(--ot-radius);
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Hours table */
.ot-hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.ot-hours td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.15);
  font-size: 0.9rem;
}

.ot-hours td:last-child {
  text-align: right;
}

/* Responsive 900px */
@media (max-width: 900px) {
  .ot-hero__grid,
  .ot-split,
  .ot-contact-grid,
  .ot-story {
    grid-template-columns: 1fr;
  }

  .ot-story:nth-child(even) {
    direction: ltr;
  }

  .ot-grid--3,
  .ot-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ot-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ot-values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ot-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive 560px */
@media (max-width: 560px) {
  :root {
    --ot-header-h: 60px;
  }

  .ot-burger {
    display: flex;
  }

  .ot-nav {
    display: none;
    position: absolute;
    top: var(--ot-header-h);
    left: 0;
    right: 0;
    background: var(--ot-charcoal);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }

  .ot-nav.ot-nav--open {
    display: flex;
  }

  .ot-hero {
    min-height: auto;
  }

  .ot-hero__grid {
    gap: 2rem;
  }

  .ot-form-row {
    grid-template-columns: 1fr;
  }

  .ot-grid--2,
  .ot-grid--3,
  .ot-grid--4 {
    grid-template-columns: 1fr;
  }

  .ot-footer__grid {
    grid-template-columns: 1fr;
  }

  .ot-footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .ot-section {
    padding: 3rem 0;
  }

  .ot-gallery {
    grid-template-columns: 1fr;
  }

  .ot-cookie {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}
