:root {
  --cream: #f5f1ea;
  --cream-deep: #ede5d8;
  --green: #1f3d2b;
  --green-deep: #12251a;
  --wine: #6b1e1e;
  --black: #0d0d0d;
  --gold: #b8925d;
  --text: #1c1a16;
  --muted: #645f58;
  --line: rgba(31, 61, 43, .14);
  --glass: rgba(245, 241, 234, .68);
  --shadow-lg: 0 30px 70px rgba(13, 13, 13, .16);
  --shadow-md: 0 18px 40px rgba(13, 13, 13, .11);
  --shadow-sm: 0 14px 28px rgba(13, 13, 13, .08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 2rem));
  --nav-height: 82px
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 146, 93, .14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(107, 30, 30, .09), transparent 25%),
    linear-gradient(180deg, #fbf8f2 0%, #f4ede2 52%, #f6f1e9 100%);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

body.is-loading {
  overflow: hidden
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .34) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 88%);
  opacity: .18;
  z-index: -2
}

img {
  display: block;
  width: 100%
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit
}

.page-loader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(184, 146, 93, .16), transparent 35%),
    linear-gradient(180deg, rgba(13, 13, 13, .96), rgba(18, 37, 26, .98));
  display: grid;
  place-items: center;
  z-index: 1000;
  transition: opacity .65s ease, visibility .65s ease
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden
}

.loader-mark {
  width: 124px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, .18);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 0 40px rgba(184, 146, 93, .18);
  overflow: hidden
}

.loader-mark::before,
.loader-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(245, 241, 234, .78);
  animation: spin 1.25s linear infinite
}

.loader-mark::after {
  inset: 18px;
  border-top-color: rgba(184, 146, 93, .88);
  animation-duration: 1.85s;
  animation-direction: reverse
}

.loader-mark span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  letter-spacing: .18em;
  color: var(--cream)
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  z-index: 90
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
  padding: .85rem 1rem .85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(248, 244, 237, .58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(13, 13, 13, .09)
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  min-width: 0
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(184, 146, 93, .42);
  box-shadow: 0 8px 16px rgba(13, 13, 13, .12);
  flex-shrink: 0
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: .05em
}

.brand-copy span {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted)
}

.nav-shell,
.nav-panel {
  display: flex;
  align-items: center;
  gap: 1rem
}

.nav-shell {
  min-width: 0;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1rem;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 600;
  color: rgba(18, 37, 26, .76);
  transition: color .3s ease, background .3s ease, transform .3s ease
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--green);
  background: rgba(31, 61, 43, .08);
  transform: translateY(-1px)
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(31, 61, 43, .08);
  border: 1px solid rgba(31, 61, 43, .12);
  box-shadow: 0 10px 20px rgba(13, 13, 13, .06);
  cursor: pointer
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease, background .3s ease
}

.nav-toggle::before {
  transform: translate(-50%, calc(-50% - 6px))
}

.nav-toggle::after {
  transform: translate(-50%, calc(-50% + 6px))
}

.nav-toggle.is-open span {
  opacity: 0
}

.nav-toggle.is-open::before {
  transform: translate(-50%, -50%) rotate(45deg)
}

.nav-toggle.is-open::after {
  transform: translate(-50%, -50%) rotate(-45deg)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border-radius: 999px;
  padding: .95rem 1.45rem;
  border: none;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(107, 30, 30, .16)
}

.btn-primary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--wine), #8d2f2f);
  box-shadow: 0 18px 30px rgba(107, 30, 30, .18)
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(107, 30, 30, .3)
}

.btn-secondary {
  background: rgba(255, 255, 255, .55);
  color: var(--green);
  border: 1px solid rgba(31, 61, 43, .1);
  box-shadow: 0 16px 28px rgba(13, 13, 13, .08)
}

.btn-compact {
  padding-inline: 1.15rem;
  min-height: 46px;
  font-size: .92rem
}

main {
  flex: 1 0 auto;
  overflow: hidden
}

.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 4.25rem);
  min-height: 100vh
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0
}

.hero::before {
  width: 360px;
  height: 360px;
  top: 12%;
  left: -9%;
  background: rgba(184, 146, 93, .14)
}

.hero::after {
  width: 280px;
  height: 280px;
  bottom: 6%;
  right: -6%;
  background: rgba(107, 30, 30, .08)
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(min(100%, 360px), .95fr);
  align-items: center;
  gap: 3.25rem;
  min-height: calc(100vh - 7rem);
  padding-block: 2rem 3rem
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(31, 61, 43, .08);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  box-shadow: 0 10px 20px rgba(13, 13, 13, .05)
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 6px rgba(107, 30, 30, .11)
}

.hero-copy {
  max-width: 640px;
}

.hero-copy h1 {
  margin-top: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.1rem, 10vw, 7.4rem);
  line-height: .88;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--green-deep)
}

.hero-copy h1 span {
  display: block;
  color: var(--wine);
  margin-left: 2rem
}

.hero-tagline {
  margin-top: 1.1rem;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 3.5vw, 2.3rem);
  color: rgba(18, 37, 26, .82)
}

.hero-copy p {
  margin-top: 1.25rem;
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted)
}

.hero-copy p strong {
  color: var(--green)
}

.signature-line {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(31, 61, 43, .08);
  box-shadow: 0 12px 24px rgba(13, 13, 13, .06);
  font-weight: 700;
  color: var(--green)
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem
}

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

.hero-stat {
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(31, 61, 43, .08);
  box-shadow: var(--shadow-sm)
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: .4rem
}

.hero-stat span {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5
}

.hero-media {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center
}

.hero-visual {
  position: relative;
  width: min(100%, 530px);
  transform: translate3d(var(--tilt-x, 0px), calc(var(--hero-parallax, 0px) + var(--tilt-y, 0px)), 0);
  transition: transform .2s ease-out
}

.hero-main {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: var(--shadow-lg);
  isolation: isolate
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, .02), rgba(13, 13, 13, .28))
}

.hero-main img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04)
}

.hero-card,
.hero-badge {
  position: absolute;
  backdrop-filter: blur(18px);
  background: rgba(248, 244, 237, .78);
  border: 1px solid rgba(255, 255, 255, .58);
  box-shadow: var(--shadow-md)
}

.hero-card {
  left: -2.6rem;
  bottom: 2.2rem;
  width: min(280px, 70vw);
  padding: 1.25rem;
  border-radius: 28px
}

.hero-card small {
  display: block;
  margin-bottom: .45rem;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 800
}

.hero-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.52rem;
  line-height: 1.18;
  color: var(--green)
}

.hero-badge {
  top: -2.1rem;
  right: -1.4rem;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: .9rem
}

.hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%
}

.hero-accent {
  position: absolute;
  right: -1.6rem;
  bottom: 6.2rem;
  width: min(200px, 32vw);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-md);
  transform: rotate(5deg)
}

.hero-accent img {
  height: 250px;
  object-fit: cover;
  object-position: center
}

section {
  padding-block: 5rem;
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.3rem
}

.section-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: .95;
  color: var(--green-deep);
  max-width: 620px
}

.section-intro p {
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted)
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 2rem;
  align-items: center
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  min-height: 560px
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, .02), rgba(13, 13, 13, .22)),
    linear-gradient(140deg, rgba(184, 146, 93, .07), transparent 55%)
}

.photo-frame img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease
}

.photo-frame:hover img {
  transform: scale(1.05)
}

.about-panel {
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(31, 61, 43, .08);
  box-shadow: var(--shadow-md)
}

.about-panel p {
  font-size: 1.03rem;
  line-height: 1.9;
  color: var(--muted)
}

.about-panel p+p {
  margin-top: 1rem
}

.about-points {
  display: grid;
  gap: .95rem;
  margin-top: 1.8rem
}

.about-point {
  display: flex;
  gap: .95rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(245, 241, 234, .84);
  border: 1px solid rgba(31, 61, 43, .08)
}

.about-point strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--green)
}

.about-point span {
  color: var(--muted);
  line-height: 1.65;
  font-size: .95rem
}

.point-index {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--cream);
  background: linear-gradient(135deg, var(--green), #30543d)
}

.menu-wrap {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start
}

.menu-showcase {
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(31, 61, 43, .08);
  box-shadow: var(--shadow-md)
}

.menu-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem
}

.showcase-card {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  box-shadow: var(--shadow-sm)
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(13, 13, 13, .52))
}

.showcase-card img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .5s ease
}

.showcase-card:hover img {
  transform: scale(1.06)
}

.showcase-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--cream)
}

.showcase-copy strong {
  display: block;
  font-size: 1rem;
  margin-bottom: .25rem
}

.showcase-copy span {
  font-size: .88rem;
  opacity: .82
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem
}

.menu-card {
  height: 100%;
  padding: 1.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(245, 241, 234, .9));
  border: 1px solid rgba(31, 61, 43, .08);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(107, 30, 30, .18)
}

.menu-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--green);
  margin-bottom: .3rem
}

.menu-card>p {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: .95rem
}

.menu-items {
  display: grid;
  gap: .95rem
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: start;
  padding-top: .95rem;
  border-top: 1px solid rgba(31, 61, 43, .1)
}

.menu-item strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--black)
}

.menu-item span {
  display: block;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55
}

.menu-item b {
  flex-shrink: 0;
  color: var(--wine);
  font-size: .92rem;
  font-weight: 800
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  isolation: isolate
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2
}

.gallery-item.tall {
  grid-row: span 2
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, .03), rgba(13, 13, 13, .3))
}

.gallery-item:hover img {
  transform: scale(1.08)
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem
}

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

.testimonial-card {
  padding: 1.55rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(31, 61, 43, .08);
  box-shadow: var(--shadow-sm);
  min-height: 100%
}

.stars {
  margin-bottom: 1rem;
  letter-spacing: .18em;
  color: var(--gold);
  font-size: .94rem
}

.testimonial-card p {
  font-size: .98rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.2rem
}

.testimonial-card strong {
  display: block;
  color: var(--green)
}

.testimonial-card span {
  font-size: .87rem;
  color: rgba(28, 26, 22, .62)
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 1.35rem
}

.contact-card,
.reservation-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(31, 61, 43, .08);
  box-shadow: var(--shadow-md)
}

.visit-list {
  display: grid;
  gap: .95rem;
  margin-block: 1.35rem 1.5rem
}

.visit-item {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(245, 241, 234, .88);
  border: 1px solid rgba(31, 61, 43, .08)
}

.visit-item small {
  display: block;
  margin-bottom: .35rem;
  color: var(--wine);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase
}

.visit-item p {
  line-height: 1.7;
  color: var(--green);
  font-weight: 600
}

.contact-copy a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 61, 43, .18);
  transition: border-color .25s ease, color .25s ease
}

.contact-copy a:hover {
  color: var(--wine);
  border-color: rgba(107, 30, 30, .35)
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: -.1rem 0 1.25rem
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  background: rgba(31, 61, 43, .08);
  color: var(--green);
  border: 1px solid rgba(31, 61, 43, .1);
  font-weight: 700;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm)
}

.contact-link-alt {
  background: linear-gradient(135deg, #1d8c5f, #146247);
  color: var(--cream);
  border-color: transparent
}

.reservation-helper {
  margin-top: -.4rem;
  font-size: .94rem;
  color: var(--wine)
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(31, 61, 43, .08);
  min-height: 340px;
  background: #ddd4c8
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(.3) contrast(1.05) saturate(.9)
}

.reservation-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.3rem
}

.reservation-form {
  display: grid;
  gap: .95rem
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem
}

.field {
  display: grid;
  gap: .45rem
}

.field label {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(31, 61, 43, .12);
  background: rgba(255, 255, 255, .9);
  border-radius: 18px;
  min-height: 56px;
  padding: .95rem 1rem;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease
}

.field textarea {
  min-height: 130px;
  resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(107, 30, 30, .34);
  box-shadow: 0 0 0 4px rgba(107, 30, 30, .08)
}

.form-note {
  min-height: 1.2rem;
  color: var(--green);
  font-size: .92rem;
  font-weight: 700
}

.footer {
  flex-shrink: 0;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(184, 146, 93, .3);
  background: transparent
}

/* Enhanced Footer */
.footer-shell {
  padding: 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(140px, .82fr));
  gap: 1.4rem;
  margin-bottom: 2rem;
  color: var(--green-deep);
}

.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--wine);
  margin-bottom: 1rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.footer-col ul a {
  color: var(--muted);
  font-weight: 600;
  transition: color .3s
}

.footer-col ul a:hover {
  color: var(--green)
}

.footer-contact-block {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5
}

.footer-contact-block strong {
  display: block;
  color: var(--green-deep);
  margin-bottom: .25rem;
  font-size: 1rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(31, 61, 43, .05);
  color: var(--green);
  transition: all .3s ease
}

.footer-socials a:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-2px)
}

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 146, 93, .2);
  color: var(--muted);
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-credit {
  margin-left: auto;
  text-align: right;
}

.footer-credit a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .18em;
  transition: color .3s ease;
}

.footer-credit a:hover {
  color: var(--green);
}

.quick-actions-bar {
  display: none
}

.quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 52px;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(248, 244, 237, .92);
  color: var(--green);
  border: 1px solid rgba(31, 61, 43, .1);
  box-shadow: var(--shadow-md);
  font-weight: 800
}

.quick-action-accent {
  background: linear-gradient(135deg, var(--wine), #8d2f2f);
  color: var(--cream);
  border-color: transparent
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s ease, transform .8s ease
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0)
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@media (max-width:1080px) {

  .hero-grid,
  .about-grid,
  .menu-wrap,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .hero-grid {
    min-height: auto;
    padding-top: 1.5rem
  }

  .hero-copy {
    max-width: none
  }

  .hero-media {
    min-height: auto
  }

  .hero-visual {
    margin-inline: auto
  }

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

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

  .footer-col[style] {
    grid-column: 1 / -1;
    max-width: none !important;
  }
}

@media (max-width:900px) {
  .site-header {
    top: .7rem
  }

  .navbar {
    border-radius: 28px;
    align-items: center;
    padding: .9rem 1rem
  }

  .nav-shell {
    width: auto;
    position: static;
    flex-shrink: 0
  }

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

  .nav-panel {
    display: grid;
    position: absolute;
    top: calc(100% + .75rem);
    left: 0;
    right: 0;
    padding: 1rem;
    gap: .9rem;
    border-radius: 28px;
    background: rgba(248, 244, 237, .92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s ease;
    max-height: min(70vh, 560px);
    overflow-y: auto
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 0;
    gap: .4rem
  }

  .nav-links a {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: .9rem 1rem;
    border-radius: 20px;
  }

  .nav-panel .btn {
    width: 100%
  }

  .nav-panel .btn {
    min-height: 48px;
  }

  .hero-copy h1 span {
    margin-left: 0
  }

  .hero-stats,
  .menu-grid,
  .field-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-auto-rows: 240px
  }

  .gallery-item.large,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }
}



@media (max-width:640px) {
  :root {
    --container: min(100vw - 1rem, 100%);
    --nav-height: 64px;
  }

  section {
    padding-block: 4rem
  }

  .navbar {
    border-radius: 999px;
    padding: .65rem .8rem;
    align-items: center;
    gap: .65rem;
  }

  .brand {
    gap: .65rem;
    max-width: calc(100% - 104px);
  }
  
  .brand img {
    width: 40px;
    height: 40px;
    border-width: 1px;
  }

  .brand-copy strong {
    font-size: 1.2rem;
  }

  .brand-copy span {
    font-size: .58rem;
  }

  .nav-shell .btn-compact {
    min-height: 38px;
    padding: .45rem .9rem;
    font-size: .85rem;
    white-space: nowrap;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    width: 17px;
  }

  .nav-toggle::before {
    transform: translate(-50%, calc(-50% - 5px));
  }

  .nav-toggle::after {
    transform: translate(-50%, calc(-50% + 5px));
  }

  .nav-toggle.is-open::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-toggle.is-open::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-panel {
    top: calc(100% + .55rem);
    padding: .9rem;
    border-radius: 22px;
  }

  .nav-links a {
    min-height: 46px;
    padding: .88rem .95rem;
  }

  .nav-panel .btn {
    min-height: 46px;
  }

  .nav-panel,
  .about-panel,
  .menu-showcase,
  .contact-card,
  .reservation-card {
    border-radius: 24px
  }

  .hero {
    padding-top: calc(var(--nav-height) + 3.5rem)
  }

  .hero-main img,
  .photo-frame,
  .photo-frame img {
    min-height: 460px
  }

  .hero-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto
  }

  .hero-badge {
    width: 110px;
    top: 1rem;
    right: 1rem
  }

  .hero-accent {
    display: none
  }

  .section-intro {
    flex-direction: column;
    align-items: flex-start
  }

  .showcase-card img {
    min-height: 140px;
  }

  .menu-showcase-grid {
    grid-template-columns: 1fr;
  }

  /* Section & Hero Mobile Adjustments */
  .page-hero {
    padding: calc(var(--nav-height) + 1.85rem) 1.25rem 2.5rem;
  }
  .page-hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 12vw, 5rem);
    line-height: 1;
  }

  .content-section {
    padding: 3.25rem 1.25rem;
  }

  /* Form & Info Grid Responsiveness */
  .form-container {
    padding: 2rem 1.5rem;
    margin: 1rem auto;
    border-radius: 24px;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .info-card {
    padding: 2rem 1.5rem;
  }

  /* Typography & Header Wraps */
  .hero-copy h1, 
  .menu-header h1,
  .section-intro h2,
  .reservation-card h2 {
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  .contact-actions {
    flex-direction: column
  }

  .contact-link {
    width: 100%
  }

  .has-quick-actions .footer {
    padding-bottom: 6.25rem
  }

  .footer-grid {
    gap: 1.25rem;
  }

  .footer-col[style] {
    max-width: none !important;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-credit {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }

  .floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 200;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  }

  .floating-whatsapp svg {
    width: 32px;
    height: 32px;
  }

  .quick-actions-bar {
    position: fixed;
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    z-index: 95;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem
  }

  .has-quick-actions .floating-whatsapp {
    bottom: calc(75px + 1rem);
  }
}

/* NEW PREMIUM FORM STYLES */
.form-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid rgba(184, 146, 93, 0.3);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

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

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--green-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(184, 146, 93, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(107, 30, 30, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--green-deep);
  color: var(--cream);
  border: none;
  border-radius: 99px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.submit-btn:hover {
  background: var(--wine);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(107, 30, 30, 0.2);
}

/* PAGE SECTION LAYOUTS */
.page-hero {
  padding: calc(var(--nav-height) + 3rem) 2rem 3.5rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(184, 146, 93, 0.1), transparent 70%),
    var(--cream);
  border-bottom: 1px solid rgba(184, 146, 93, 0.1);
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  color: var(--green-deep);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: var(--muted);
}

.content-section {
  padding: 4.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.info-card {
  padding: 3rem;
  background: white;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 146, 93, 0.1);
  transition: transform 0.3s ease;
}

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

.info-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--wine);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.info-card p,
.info-card ul {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.1rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.info-card ul li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 800;
}


/* --- Floating WhatsApp Button --- */
@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  background-color: #25D366;
  color: white;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: wa-pulse 2s infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
}

.wa-btn svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.wa-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 1rem;
  background-color: white;
  color: black;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wa-btn:hover .wa-tooltip {
  opacity: 1;
}

@media (max-width: 640px) {
  .wa-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.8rem;
  }

  .has-quick-actions .wa-btn {
    bottom: calc(75px + 1rem);
    /* Space above action bar */
  }

  .wa-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .wa-tooltip {
    display: none;
  }
}

.story-image-wrap {
  margin-top: 4rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 550px;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .story-image-wrap {
    height: 350px;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .story-image-wrap {
    height: 250px;
  }
}

.map-container-premium {
  width: 100%;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 93, 0.3);
}

@media (max-width: 768px) {
  .map-container-premium {
    height: 350px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .map-container-premium {
    height: 300px;
  }
}

.promise-card {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.promise-card h3 {
  font-size: 2.8rem;
}

.promise-card p {
  font-style: italic;
  font-size: 1.4rem;
  color: var(--green-deep);
}

@media (max-width: 768px) {
  .promise-card h3 {
    font-size: 2rem;
  }
  .promise-card p {
    font-size: 1.2rem;
  }
}

/* --- Responsive Utility Classes --- */
@media (max-width: 480px) {
  :root {
    --container: min(100vw - .75rem, 100%);
  }

  section {
    padding-block: 3.75rem;
  }

  .site-header {
    top: .45rem;
  }

  .navbar {
    gap: .55rem;
    padding: .5rem .65rem;
  }

  .brand {
    gap: .55rem;
    max-width: calc(100% - 96px);
  }

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

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy span {
    display: none;
  }

  .nav-shell {
    gap: .45rem;
  }

  .nav-shell .btn-compact {
    min-height: 35px;
    padding: .38rem .7rem;
    font-size: .76rem;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 1.6rem) 1rem 2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .content-section {
    padding: 2.75rem 1rem;
  }

  .form-container {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }

  .info-card {
    padding: 1.5rem 1.1rem;
    border-radius: 24px;
  }

  .info-card h3 {
    font-size: clamp(1.7rem, 9vw, 2rem);
  }

  .info-card p,
  .info-card ul {
    font-size: 1rem;
    line-height: 1.7;
  }

  .footer-grid {
    gap: 1.25rem;
  }

  .footer-socials {
    gap: .75rem;
  }

  .footer-bottom {
    padding-top: 1rem;
  }

  .footer-credit {
    font-size: .85rem;
  }

  .wa-btn {
    right: 1rem;
    bottom: calc(75px + .75rem);
  }

  .story-image-wrap {
    height: 230px;
  }

  .map-container-premium {
    height: 280px;
  }

  .hero-stats,
  .menu-grid,
  .field-grid,
  .gallery-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-panel {
    width: 100%;
    left: 0;
    right: 0;
  }
}

@media (hover: none), (pointer: coarse) {
  a,
  button,
  [class*="card"] {
    -webkit-tap-highlight-color: transparent;
  }

  .nav-links a:hover {
    color: rgba(18, 37, 26, .76);
    background: transparent;
    transform: none;
  }

  .btn:hover,
  .submit-btn:hover,
  .info-card:hover,
  .menu-card:hover,
  .contact-link:hover,
  .wa-btn:hover,
  .floating-whatsapp:hover {
    transform: none;
  }

  .btn-primary:hover {
    box-shadow: 0 18px 30px rgba(107, 30, 30, .18);
  }

  .btn-secondary:hover {
    box-shadow: 0 16px 28px rgba(13, 13, 13, .08);
  }

  .submit-btn:hover {
    background: var(--green-deep);
    box-shadow: none;
  }

  .menu-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(31, 61, 43, .08);
  }

  .contact-copy a:hover {
    color: inherit;
    border-color: rgba(31, 61, 43, .18);
  }

  .contact-link:hover {
    box-shadow: none;
    background: rgba(31, 61, 43, .08);
  }

  .footer-col ul a:hover {
    color: var(--muted);
  }

  .footer-socials a:hover {
    background: rgba(31, 61, 43, .05);
    color: var(--green);
    transform: none;
  }

  .footer-credit a:hover {
    color: var(--wine);
  }

  .floating-whatsapp:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  }

  .showcase-card:hover img,
  .photo-frame:hover img,
  .gallery-item:hover img {
    transform: none;
  }

  .wa-btn:hover .wa-tooltip {
    opacity: 0;
  }
}
