:root {
  --night: #050b0e;
  --ink: #081214;
  --forest: #06251f;
  --emerald: #0a4d43;
  --emerald-soft: #0d6a59;
  --gold: #d9a257;
  --gold-light: #ffd384;
  --copper: #b97835;
  --ruby: #8f2432;
  --coral: #ff6d5a;
  --ivory: #fff2dc;
  --muted: #c9b9a6;
  --glass: rgba(10, 24, 22, .56);
  --glass-strong: rgba(9, 16, 17, .72);
  --line: rgba(255, 211, 132, .24);
  --shadow: 0 26px 80px rgba(0, 0, 0, .42);
  --radius: 28px;
  --max: 1240px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: white;
  /* background:
    radial-gradient(circle at 12% 3%, rgba(255, 109, 90, .22), transparent 28rem),
    radial-gradient(circle at 85% 7%, rgba(217, 162, 87, .16), transparent 26rem),
    linear-gradient(180deg, #030708 0%, #06110f 46%, #030607 100%); */
  background: #dddfe0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Denk One', sans-serif !important;
}

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

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

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

::selection {
  background: rgba(255, 109, 90, .42);
  color: #fff
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 75%);
}

body:after {
  content: "";
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  right: -12rem;
  top: 18%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 162, 87, .12), transparent 62%);
  filter: blur(10px);
  animation: floatGlow 9s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  to {
    transform: translate3d(-4rem, 3rem, 0) scale(1.1)
  }
}

.container {
  width: min(var(--max), calc(100% - 42px));
  margin-inline: auto
}

.section {
  padding: 96px 0;
  position: relative
}

.section.tight {
  padding: 62px 0
}

.eyebrow {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .72rem;
  color: white;
  font-weight: 800;
}

.eyebrow:before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, black, transparent)
}

h1,
h2,
h3,
h4 {
  line-height: 1.06;
  margin: 0;
  color: white;
  font-weight: 500;
  letter-spacing: -.03em
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.4rem)
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem)
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.2rem)
}

p {
  margin: 0;
  color: white;
  font-family: 'Elms Sans', sans-serif;
}

.lead {
  font-size: 16px;
  color: white;
  max-width: 720px;
  font-family: 'Elms Sans', sans-serif;
}

.gold {
  color: white
}

.script {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  color: white;
  font-size: 50px;
  letter-spacing: .03em;
  font-weight: 400
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  border: 1px solid #3A3F42; 
  border-radius: 999px;
  padding: 1rem 1.38rem;
  /* background: linear-gradient(135deg, #a69999, #000000); */
  background: #3A3F42;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  box-shadow: 0 18px 36px rgba(217, 162, 87, .22);
  cursor: pointer;
  transition: .35s ease;
  white-space: nowrap
}

.btn:hover {
  transform: translateY(-4px);
  background: black;
  /* box-shadow: 0 26px 58px rgba(217, 162, 87, .32) */
}

.btn.outline {
  /* background: rgba(255, 255, 255, .035); */
  color: white;
  /* border: 1px solid gray; */
  box-shadow: none;
  backdrop-filter: blur(14px)
}

.btn.outline:hover {
  background: black;
  color: white;
}

.icon-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid white;
  background: rgba(255, 255, 255, .07);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .3s ease;
  color: white;
}

.icon-btn:hover {
  background: white;
  color: #160d07;
  transform: translateY(-3px)
}

.glass {
  /* background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)); */
  background: white;
  border: 1px solid gray;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  border-radius: var(--radius)
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: .35s ease;
  pointer-events: none
}

.site-header.scrolled {
  top: 8px
}

.site-header.scrolled .nav-wrap {
  background: white;
  box-shadow: 0 18px 70px rgba(0, 0, 0, .45)
}

.nav-wrap {
  width: min(1320px, calc(100% - 32px));
  margin: auto;
  border: 1px solid rgba(255, 211, 132, .23);
  /* background: rgba(4, 8, 9, .42); */
  background: white;
  backdrop-filter: blur(18px);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 14px 10px 18px;
  pointer-events: auto;
  transition: .35s ease
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content
}

.brand img {
  width: 250px;
  height: auto;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1
}

.brand-title span {
  display: block;
  font-size: .55rem;
  letter-spacing: .3em;
  color: white;
  margin-top: 7px;
  font-weight: 700
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-links a {
  display: block;
  padding: .85rem .75rem;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .09em;
  color: black;
  transition: .25s ease
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: black;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid gray;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: gray;
  cursor: pointer
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  border-radius: 2px;
  transition: .3s
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px 0 48px;
  background: #020606
}

.hero.compact {
  min-height: 72vh;
  align-items: center;
  padding-bottom: 70px
}

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

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 7s ease
}

.slide.active {
  opacity: 1;
  transform: scale(1)
}

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

.slide:after,
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(90deg,
      rgba(3, 6, 7, .55),
      rgba(3, 6, 7, .15) 48%,
      rgba(3, 6, 7, .45)),
    linear-gradient(180deg,
      rgba(0, 0, 0, .08),
      rgba(0, 0, 0, .40)); */
}

.hero-bg {
  position: absolute;
  inset: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1)
}

.hero-content {
  position: relative;
  z-index: 2
}

.hero-grid {
  display: grid;
  text-align: center;
  justify-content: center;
  /* grid-template-columns: minmax(0, 1.05fr) minmax(320px, .55fr); */
  gap: 34px;
  align-items: end
}

.hero-copy {
  max-width: 780px
}

.hero-copy h1 {
  margin: 14px 0 24px
}

.hero-copy .lead {
  margin-bottom: 30px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.slider-controls {
  position: absolute;
  z-index: 3;
  inset-inline: 30px;
  top: 50%;
  display: flex;
  justify-content: space-between;
  pointer-events: none
}

.slider-controls .icon-btn {
  pointer-events: auto
}

.slide-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  justify-content: center;
}

.slide-dot {
  width: 34px;
  height: 3px;
  background: rgba(255, 255, 255, .22);
  border-radius: 10px;
  cursor: pointer;
  transition: .3s
}

.slide-dot.active {
  background: white;
  width: 54px
}

.hero-panel {
  padding: 28px;
  background: linear-gradient(145deg, rgba(13, 106, 89, .38), rgba(143, 36, 50, .18));
  border: 1px solid rgba(255, 211, 132, .25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
  border-radius: 32px;
  backdrop-filter: blur(20px)
}

.hero-panel h3 {
  margin-bottom: 15px
}

.quick-form {
  display: grid;
  gap: 12px
}

.field {
  display: grid;
  gap: 6px
}

.field label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: white;
  font-weight: 800
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid gainsboro;
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: .9rem 1rem;
  outline: none;
  color: var(--ivory)
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: white;
  box-shadow: 0 0 0 4px rgba(217, 162, 87, .12)
}

.feature-strip {
  position: relative;
  z-index: 4;
  margin-top: -84px
}

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

.feature-card {
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: .35s
}

.feature-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, .08)
}

.feature-card .ico {
  font-size: 2.2rem;
  color: white
}

.feature-card h3 {
  font-size: 1.28rem;
  margin-bottom: 8px
}

.feature-card p {
  font-size: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: 1s ease
}

.image-card:hover img {
  transform: scale(1.07)
}

.image-card:after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .36)) */
}

.content-card {
  padding: 42px
}

.content-card h2 {
  margin: 16px 0 22px
}

.content-card .lead {
  margin-bottom: 26px
}

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

.section-head .text h2 {
  margin-top: 8px
}

.section-head .text {
  max-width: 770px
}

.grid {
  display: grid;
  gap: 20px
}

.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr)
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 211, 132, .18);
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
  transition: .35s ease;
  backdrop-filter: blur(16px)
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 211, 132, .42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36)
}

.card-media {
  height: 230px;
  overflow: hidden
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .65s
}

.card:hover .card-media img {
  transform: scale(1.08)
}

.card-body {
  padding: 24px
}

.card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 8px
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: white;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800
}

.price {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  color: white;
  margin-top: 16px
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, white, var(--coral));
  color: #240d0a;
  border-radius: 999px;
  padding: .42rem .7rem;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  z-index: 2
}

.tasting-band {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, .7fr) auto;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(143, 36, 50, .62), rgba(10, 77, 67, .5));
  border-radius: 30px;
  border: 1px solid rgba(255, 211, 132, .25);
  box-shadow: var(--shadow)
}

.tasting-stat {
  border-left: 1px solid rgba(255, 211, 132, .22);
  padding-left: 22px
}

.tasting-stat strong {
  display: block;
  color: white;
  font-size: 1.4rem;
  font-family: Georgia, serif
}

.tasting-stat span {
  font-size: .84rem;
  color: rgba(255, 242, 220, .72)
}

.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.menu-tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
  color: var(--ivory);
  border-radius: 999px;
  padding: .82rem 1.05rem;
  text-transform: uppercase;
  font-weight: 900;
  font-size: .74rem;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .3s
}

.menu-tab.active,
.menu-tab:hover {
  background: linear-gradient(135deg, white, var(--copper));
  color: #251409
}

.menu-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px
}

.menu-item .thumb {
  width: 132px;
  height: 100px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto
}

.menu-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.menu-item h3 {
  font-size: 1.12rem
}

.menu-item .price {
  margin-left: auto;
  min-width: 70px;
  text-align: right
}

.chef-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px
}

.chef-card {
  min-height: 360px;
  padding: 34px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line)
}

.chef-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 8, .94), rgba(3, 8, 8, .34))
}

.chef-card>* {
  position: relative;
  z-index: 2
}

.testimonial-card {
  padding: 30px
}

.stars {
  color: white;
  letter-spacing: .12em;
  margin-bottom: 15px
}

.avatar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px
}

.avatar span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, white, var(--ruby));
  font-weight: 900;
  color: #210c08
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 260px;
  gap: 18px
}

.gallery-grid .gallery-item:first-child {
  grid-row: span 2
}

.gallery-item {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  background: #111
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.2)
}

/* .gallery-item:after {
  content: "View";
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(0, 0, 0, .48);
  border: 1px solid var(--line);
  padding: .55rem .85rem;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  font-size: .76rem;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s
} */

.gallery-item:hover:after {
  opacity: 1;
  transform: none
}

.cta {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(90deg, rgba(4, 9, 9, .94), rgba(4, 9, 9, .34)), var(--bg);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 4rem)
}

.wrapper {
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden
}

.wrapper .hero-bg:after {
  background: linear-gradient(90deg, rgba(3, 6, 7, .82), rgba(3, 6, 7, .32), rgba(3, 6, 7, .74)), linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .72))
}

.wrapper-content {
  position: relative;
  z-index: 2;
  max-width: 850px
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  color: rgba(255, 242, 220, .62);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  margin-bottom: 18px
}

.breadcrumbs span:last-child {
  color: white
}

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

.stat {
  padding: 30px;
  text-align: center
}

.stat strong {
  font-size: clamp(2rem, 4vw, 4rem);
  color: white;
  font-family: Georgia, serif;
  font-weight: 500
}

.stat span {
  display: block;
  color: rgba(255, 242, 220, .72);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 800
}

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

.timeline-card {
  padding: 28px
}

.timeline-card .num {
  font-family: Georgia, serif;
  color: white;
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px
}

.faq {
  display: grid;
  gap: 12px
}

.faq-item {
  border: 1px solid rgba(255, 211, 132, .2);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .05)
}

.faq-q {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 900;
  color: var(--ivory)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-a p {
  padding: 0 20px 18px
}

.faq-item.open .faq-a {
  max-height: 180px
}

.faq-item.open .faq-q span {
  transform: rotate(45deg)
}

.blog-card .card-media {
  height: 210px
}

.blog-date {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ruby), var(--gold));
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: #fff;
  font-size: .78rem;
  line-height: 1.1;
  z-index: 2
}

.blog-date strong {
  display: block;
  font-size: 1.15rem
}

.contact-list {
  display: grid;
  gap: 18px
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 22px
}

.contact-item .ico {
  font-size: 1.8rem;
  color: black;
}

.map-card {
  height: 360px;
  position: relative;
  overflow: hidden
}

.map-card:before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 30% 30%, rgba(217, 162, 87, .2), transparent 20%), linear-gradient(135deg, #052a30, #081313); */
}

/* .map-card:after {
  content: "SAMPLE MAP";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(255, 211, 132, .28);
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: rgba(255, 211, 132, .55);
  font-weight: 900;
  letter-spacing: .26em
} */

.pin {
  position: absolute;
  left: 48%;
  top: 43%;
  z-index: 2;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, white, var(--coral));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35)
}

.pin:after {
  content: "";
  position: absolute;
  inset: 16px;
  background: #220d08;
  border-radius: 50%
}

.site-footer {
  /* background: linear-gradient(180deg, rgba(5, 11, 14, .55), #020505); */
  border-top: 1px solid black;
  background: white;
  padding: 66px 0 24px;
  position: relative;
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr) 1.4fr;
  gap: 34px
}

.footer-brand img {
  width: 200px
}

.footer-brand p {
  margin: 18px 0
}

.social {
  display: flex;
  gap: 9px
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid black;
  display: grid;
  place-items: center;
  color: black;
  transition: .25s
}

.social a:hover {
  background: var(--gold);
  color: #150a05
}

.footer-col h4 {
  font-family: inherit;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: black;
  margin-bottom: 16px
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px
}




.footer-col a {
  color: black;
  font-size: 16px;
  font-family: 'Elms Sans', sans-serif;
}

.footer-col a:hover {
  color: gray;
}

.newsletter {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line)
}

.newsletter .row {
  display: flex;
  margin-top: 14px
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 211, 132, .2);
  background: rgba(0, 0, 0, .18);
  padding: .9rem;
  border-radius: 14px 0 0 14px;
  outline: 0
}

.newsletter button {
  border: 0;
  background: linear-gradient(135deg, white, var(--copper));
  color: #160b05;
  padding: 0 1rem;
  border-radius: 0 14px 14px 0;
  cursor: pointer
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid black;
  color: black;
  font-size: 16px;
  font-family: 'Elms Sans', sans-serif;
}

.copyright {
  text-align: right;
  color: black;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.lightbox.open {
  display: flex
}

.lightbox img {
  max-height: 86vh;
  max-width: 92vw;
  border-radius: 24px;
  box-shadow: 0 30px 100px #000
}

.lightbox button {
  position: absolute;
  top: 24px;
  right: 24px
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 3000;
  background: linear-gradient(135deg, white, var(--copper));
  color: #1c0b04;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  font-weight: 900;
  transform: translateY(120px);
  opacity: 0;
  transition: .35s
}

.toast.show {
  transform: none;
  opacity: 1
}

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

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

.tilt {
  transform-style: preserve-3d
}

.decor-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: -1
}

.orb-1 {
  width: 250px;
  height: 250px;
  background: rgba(255, 109, 90, .15);
  left: 4%;
  top: 18%
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(13, 106, 89, .22);
  right: 2%;
  bottom: 8%
}

@media(max-width:1100px) {
  .nav-links {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: white;
    border: 1px solid var(--line);
    backdrop-filter: blur(18px)
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: 1rem
  }

  .menu-toggle {
    display: block
  }

  .header-actions .btn {
    display: none
  }

  .hero-grid,
  .split,
  .chef-row {
    grid-template-columns: 1fr
  }

  .hero {
    align-items: center
  }

  .hero-panel {
    max-width: 520px
  }

  .feature-grid,
  .grid.cols-4,
  .grid.cols-3,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tasting-band {
    grid-template-columns: 1fr 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats,
  .timeline {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:720px) {
  .container {
    width: min(100% - 24px, var(--max))
  }

  .brand-title {
    display: none
  }

  .hero,
  .wrapper {
    min-height: 80vh;
    padding-top: 120px
  }

  .hero-grid {
    gap: 22px
  }

  .hero-panel {
    padding: 20px
  }

  .slider-controls {
    display: none
  }

  .feature-strip {
    margin-top: 0;
    padding-top: 20px
  }

  .feature-grid,
  .grid.cols-4,
  .grid.cols-3,
  .grid.cols-2,
  .footer-grid,
  .stats,
  .timeline,
  .tasting-band {
    grid-template-columns: 1fr
  }

  .section {
    padding: 68px 0
  }

  .section-head {
    display: block
  }

  .section-head .btn {
    margin-top: 18px
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px
  }

  .gallery-grid .gallery-item:first-child {
    grid-row: auto
  }

  .cta {
    display: grid;
    text-align: left
  }

  .menu-item {
    display: grid
  }

  .menu-item .thumb {
    width: 100%;
    height: 190px
  }

  .menu-item .price {
    text-align: left;
    margin-left: 0
  }

  .footer-bottom {
    display: grid;
    text-align: left
  }

  .copyright {
    text-align: left
  }

  .nav-wrap {
    border-radius: 22px
  }

  .btn {
    width: 100%
  }

  .hero-actions .btn {
    width: auto
  }

  .content-card {
    padding: 28px
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.4rem)
  }
}

/* ================================
  new added css
================================ */


.zuytara-feature {
  width: 100%;
  padding: 110px 20px;
  background: #000;
  color: #fff;
}

.zuytara-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.zuytara-feature-heading {
  text-align: center;
  margin-bottom: 55px;
}

.zuytara-feature-label {
  margin: 0 0 18px;
  font-size: 16px;
  letter-spacing: 4px;
  color: white;

}

.zuytara-feature-body {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}



.zuytara-feature-body h4 {
  margin: 45px 0 0;
  padding-top: 28px;
  border-top: 1px solid white;
  font-size: 18px;
  letter-spacing: -.0em;
  font-weight: 500;
  color: #fff6e7;

}

@media (max-width: 600px) {
  .zuytara-feature {
    padding: 75px 20px;
  }

  .zuytara-feature-heading {
    margin-bottom: 40px;
  }

  .zuytara-feature-heading h2 {
    font-size: 40px;
  }

  .zuytara-feature-body p {
    font-size: 15px;
    line-height: 1.8;
  }

  .zuytara-feature-body h4 {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

.zuytara-why-stay {
  position: relative;
  padding: 130px 25px;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.zuytara-why-stay::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: -350px;
  top: 20%;
  border-radius: 50%;
  background: rgba(174, 110, 67, 0.08);
  filter: blur(100px);
}

.zuytara-why-inner {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.zuytara-why-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
}

.zuytara-why-label {
  position: relative;
  padding-left: 45px;
  font-size: 10px;
  letter-spacing: 4px;
  color: #817a76;
  white-space: nowrap;
}

.zuytara-why-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #817a76;
}

.zuytara-why-heading h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(45px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -2px;
}

.zuytara-why-heading h2 em {
  color: #817a76;
  font-weight: 400;
}

/* GRID */
.zuytara-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ITEM */
.zuytara-why-item {
  position: relative;
  min-height: 310px;
  padding: 45px 38px;
  background: #050505;
  transition: all 0.4s ease;
  overflow: hidden;
}

.zuytara-why-item::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -50px;
  bottom: -50px;
  border-radius: 50%;
  border: 2px solid rgba(174, 110, 67, 0.3);
  transition: 0.5s ease;
}

.zuytara-why-item:hover {
  background: #0b0b0b;
  transform: translateY(-5px);
}

.zuytara-why-item:hover::after {
  transform: scale(2);
}

.zuytara-why-tall {
  min-height: 350px;
}

.zuytara-why-featured {
  background: linear-gradient(145deg, #0b0b0b, #111111);
}

/* NUMBER */
.zuytara-why-number {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
}

/* ICON */
.zuytara-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 55px;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
  font-size: 19px;
  font-weight: 300;
}

/* TITLE */
.zuytara-why-item h3 {
  margin: 0 0 18px;
  max-width: 280px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  color: #fff;
}

/* TEXT */


/* RESPONSIVE */
@media (max-width: 900px) {
  .zuytara-why-stay {
    padding: 90px 20px;
  }

  .zuytara-why-heading {
    display: block;
    margin-bottom: 55px;
  }

  .zuytara-why-label {
    display: inline-block;
    margin-bottom: 25px;
  }

  .zuytara-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zuytara-why-item,
  .zuytara-why-tall {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .zuytara-why-stay {
    padding: 75px 18px;
  }

  .zuytara-why-heading h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .zuytara-why-grid {
    grid-template-columns: 1fr;
  }

  .zuytara-why-item,
  .zuytara-why-tall {
    min-height: auto;
    padding: 38px 30px;
  }

  .zuytara-why-icon {
    margin-bottom: 35px;
  }

  .zuytara-why-item h3 {
    font-size: 20px;
  }
}


.zuytara-why-item:nth-child(1) .zuytara-why-icon {
  color: #5EC8D8;
  border-color: rgba(94, 200, 216, 0.5);
  background: rgba(94, 200, 216, 0.08);
  font-size: 30px;
}

.zuytara-why-item:nth-child(2) .zuytara-why-icon {
  color: #D9A15B;
  border-color: rgba(217, 161, 91, 0.5);
  background: rgba(217, 161, 91, 0.08);
  font-size: 30px;
}

.zuytara-why-item:nth-child(3) .zuytara-why-icon {
  color: #79BFA1;
  border-color: rgba(121, 191, 161, 0.5);
  background: rgba(121, 191, 161, 0.08);
  font-size: 30px;
}

.zuytara-why-item:nth-child(4) .zuytara-why-icon {
  color: #B99AE8;
  border-color: rgba(185, 154, 232, 0.5);
  background: rgba(185, 154, 232, 0.08);
  font-size: 30px;
}

.zuytara-why-item:nth-child(5) .zuytara-why-icon {
  color: #D88F72;
  border-color: rgba(216, 143, 114, 0.5);
  background: rgba(216, 143, 114, 0.08);
  font-size: 30px;
}

.zuytara-why-item:nth-child(6) .zuytara-why-icon {
  color: #E4C86A;
  border-color: rgba(228, 200, 106, 0.5);
  background: rgba(228, 200, 106, 0.08);
  font-size: 30px;
}


.zuytara-experience {
  position: relative;
  padding: 120px 25px;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.zuytara-experience-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.zuytara-experience-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 55px;
}

.zuytara-experience-label {
  font-size: 10px;
  letter-spacing: 4px;
  color: #817a76;
}

.zuytara-experience-rule {
  width: 90px;
  height: 1px;
  background: rgba(174, 110, 67, 0.5);
}

/* MAIN SPLIT */
.zuytara-experience-layout {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
}

/* IMAGE */
.zuytara-experience-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.zuytara-experience-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, #000 100%);
}

.zuytara-experience-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.zuytara-experience-content {
  position: relative;
  z-index: 2;
  margin-left: -45px;
  padding: 65px 65px 65px 90px;
  background: rgba(10, 10, 10, 0.96);
  align-self: center;
}

/* TITLE */
.zuytara-experience-title {
  margin-bottom: 45px;
}

.zuytara-experience-title h2 {
  margin: 0;
  font-size: clamp(45px, 5vw, 70px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -2px;
}

.zuytara-experience-title h2 em {
  color: #817a76;
  font-weight: 400;
}

/* TEXT */
.zuytara-experience-copy {
  max-width: 620px;
}

.zuytara-experience-copy p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  color: white;
}

.zuytara-experience-copy .zuytara-experience-lead {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

/* LAST TEXT */
.zuytara-experience-copy p:last-child {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid grey;
  color: white;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .zuytara-experience {
    padding: 90px 20px;
  }

  .zuytara-experience-layout {
    grid-template-columns: 1fr;
  }

  .zuytara-experience-image {
    min-height: 450px;
  }

  .zuytara-experience-image img {
    min-height: 450px;
  }

  .zuytara-experience-image::after {
    background: linear-gradient(180deg, transparent 60%, #000 100%);
  }

  .zuytara-experience-content {
    margin-left: 0;
    margin-top: -60px;
    padding: 50px 35px;
  }
}

@media (max-width: 550px) {
  .zuytara-experience {
    padding: 70px 15px;
  }

  .zuytara-experience-top {
    margin-bottom: 40px;
  }

  .zuytara-experience-content {
    padding: 40px 25px;
  }

  .zuytara-experience-title h2 {
    font-size: 42px;
  }

  .zuytara-experience-copy .zuytara-experience-lead {
    font-size: 17px;
  }

  .zuytara-experience-copy p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* =========================================
   ZUYTARA LUXURY STATEMENT
========================================= */

.zuytara-luxury-statement {
  position: relative;
  background: #000;
  color: #fff;
  padding: 120px 25px;
  overflow: hidden;
}

.zuytara-luxury-statement-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Label */

.zuytara-luxury-statement-label {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 80px;
}

.zuytara-luxury-statement-label span {
  font-size: 10px;
  letter-spacing: 4px;
  color: #817a76;
  white-space: nowrap;
}

.zuytara-luxury-statement-line {
  width: 100px;
  height: 1px;
  background: rgba(174, 110, 67, 0.45);
}

/* Main Content */

.zuytara-luxury-statement-content {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 70px;
}

/* Heading */

.zuytara-luxury-statement-heading {
  position: relative;
  padding-left: 55px;
}

.zuytara-luxury-number {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #817a76;
}

.zuytara-luxury-statement-heading h2 {
  margin: 0;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2px;
}

.zuytara-feature-heading h2 em {
  color: #817a76;
}

.zuytara-luxury-statement-heading h2 em {
  color: #817a76;
  font-weight: 400;
}

.content-card h2 em {
  color: #817a76;
}



/* Text */

.zuytara-luxury-statement-text {
  max-width: 600px;
  padding-left: 35px;
  border-left: 1px solid rgba(174, 110, 67, 0.35);
}

.zuytara-luxury-statement-text p {
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  color: white;
}

.zuytara-luxury-statement-text p:first-child {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.zuytara-luxury-statement-text p:last-child {
  margin-bottom: 0;
}

/* Bottom Detail */

.zuytara-luxury-statement-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 90px;
}

.zuytara-luxury-statement-bottom span {
  width: 45px;
  height: 1px;
  background: #817a76;
}

.zuytara-luxury-statement-bottom p {
  margin: 0;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
}

/* Subtle Background Detail */

.zuytara-luxury-statement::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -250px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(174, 110, 67, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.zuytara-luxury-statement::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  right: -175px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(174, 110, 67, 0.06);
  border-radius: 50%;
  pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .zuytara-luxury-statement {
    padding: 90px 20px;
  }

  .zuytara-luxury-statement-label {
    margin-bottom: 60px;
  }

  .zuytara-luxury-statement-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zuytara-luxury-statement-heading {
    padding-left: 45px;
  }

  .zuytara-luxury-statement-text {
    padding-left: 25px;
    max-width: 700px;
  }

  .zuytara-luxury-statement-bottom {
    margin-top: 65px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

  .zuytara-luxury-statement {
    padding: 70px 18px;
  }

  .zuytara-luxury-statement-label {
    gap: 15px;
    margin-bottom: 50px;
  }

  .zuytara-luxury-statement-label span {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .zuytara-luxury-statement-line {
    width: 60px;
  }

  .zuytara-luxury-statement-content {
    gap: 40px;
  }

  .zuytara-luxury-statement-heading {
    padding-left: 35px;
  }

  .zuytara-luxury-number {
    font-size: 9px;
  }

  .zuytara-luxury-statement-heading h2 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .zuytara-luxury-statement-text {
    padding-left: 20px;
  }

  .zuytara-luxury-statement-text p {
    font-size: 14px;
    line-height: 1.8;
  }

  .zuytara-luxury-statement-text p:first-child {
    font-size: 16px;
    line-height: 1.8;
  }

  .zuytara-luxury-statement-bottom {
    margin-top: 50px;
  }

  .zuytara-luxury-statement-bottom p {
    font-size: 8px;
    letter-spacing: 2px;
  }
}

/* =========================================
   ZUYTARA FOOTER BACKGROUND
========================================= */



/* =========================================
   ZUYTARA CONTACT INFO
========================================= */

.zuytara-footer-contact {
  position: relative;
  z-index: 2;
}

.zuytara-footer-contact h4 {
  color: #AE6E43;
  margin-bottom: 25px;
}

.zuytara-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.zuytara-contact-item i {
  width: 18px;
  min-width: 18px;
  color: black;
  font-size: 14px;
  margin-top: 4px;
  text-align: center;
}

.zuytara-contact-item span {
  display: block;
  color: black;
  font-family: 'Elms Sans', sans-serif;
  font-size: 16px;
}

/* =========================================
   ZUYTARA SOCIAL ICONS
========================================= */

.footer-brand .social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(174, 110, 67, 0.45);
  color: black;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-brand .social a:hover {
  background: black;
  border-color: black;
  color: white;
  transform: translateY(-3px);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .zuytara-footer-contact {
    margin-top: 15px;
  }

  .zuytara-contact-item {
    font-size: 13px;
  }

}

.footer-arrow {
  font-size: 10px;
  margin-right: 8px;
  font-weight: 600;
}


.image-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.image-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 5px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
}

.gallery-item img {
  cursor: pointer;
}




.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.80);
  z-index: 0;
}

.site-footer>* {
  position: relative;
  z-index: 1;
}

.copyright a:hover {
  color: gray;
}

.footer-bottom a:hover {
  color: gray;
}

.zuytara-contact-item span:hover {
  color: gray;
}


.zuytara-courtyard-section {
  padding: 100px 30px;
  background: #fff;
  text-align: center;
}

.zuytara-courtyard-content {
  max-width: 850px;
  margin: auto;
}

.zuytara-courtyard-script {
  font-size: 28px;
  color: #AE6E43;
}

.zuytara-courtyard-content h2 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.15;
  color: black;
  margin: 8px 0 30px;
}

.zuytara-courtyard-content h2 span {
  color: #AE6E43;
}

.zuytara-courtyard-content p {
  font-size: 16px;
  line-height: 1.9;
  color: black;
  margin-bottom: 18px;
}

.zuytara-courtyard-features {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
}

.zuytara-courtyard-features span {
  padding: 0 25px;
  font-size: 18px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-right: 1px solid #d8c0ad;
  font-weight: 700;
}

.zuytara-courtyard-features span:last-child {
  border-right: none;
}

@media (max-width: 700px) {
  .zuytara-courtyard-section {
    padding: 70px 25px;
  }

  .zuytara-courtyard-content h2 {
    font-size: 40px;
  }

  .zuytara-courtyard-features {
    flex-direction: column;
    gap: 15px;
  }

  .zuytara-courtyard-features span {
    border-right: none;
  }
}

/* 3 Images */
.zuytara-courtyard-images {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.zuytara-courtyard-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.zuytara-courtyard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.zuytara-courtyard-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 700px) {

  .zuytara-courtyard-section {
    padding: 70px 20px;
  }

  .zuytara-courtyard-content h2 {
    font-size: 40px;
  }

  .zuytara-courtyard-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .zuytara-courtyard-image {
    aspect-ratio: 16 / 11;
  }

  .zuytara-courtyard-features {
    flex-direction: column;
    gap: 15px;
  }

  .zuytara-courtyard-features span {
    border-right: none;
  }
}

.zuytara-spaces-section {
  padding: 110px 30px;
}

.zuytara-spaces-wrapper {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

/* Content */

.zuytara-spaces-content {
  padding-left: 20px;
}

.zuytara-spaces-script {
  display: block;
  font-size: 28px;
  color: #AE6E43;
  margin-bottom: 8px;
}

.zuytara-spaces-content h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  color: white;
}

.zuytara-spaces-content h2 em {
  color: #AE6E43;
  font-style: normal;
}

.zuytara-spaces-line {
  width: 65px;
  height: 2px;
  background: #AE6E43;
  margin: 30px 0;
}

.zuytara-spaces-content p {
  font-size: 16px;
  line-height: 1.9;
  color: white;
  margin-bottom: 18px;
}

/* Images */

.zuytara-spaces-visual {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.zuytara-space-card {
  position: relative;
  overflow: hidden;
  height: 230px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.zuytara-space-card.large {
  height: 390px;
}

.zuytara-space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.zuytara-space-card:hover img {
  transform: scale(1.05);
}

.zuytara-space-number {
  position: absolute;
  bottom: 15px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
}

.zuytara-space-small-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Mobile */

@media (max-width: 800px) {

  .zuytara-spaces-section {
    padding: 75px 20px;
  }

  .zuytara-spaces-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .zuytara-spaces-content {
    padding-left: 0;
    text-align: center;
  }

  .zuytara-spaces-line {
    margin: 25px auto;
  }

  .zuytara-space-card.large {
    height: 300px;
  }

  .zuytara-space-card {
    height: 190px;
  }
}

@media (max-width: 500px) {

  .zuytara-space-small-row {
    grid-template-columns: 1fr;
  }

  .zuytara-space-card {
    height: 230px;
  }
}


/* =========================================
   ZUYTARA EXPERIENCES
========================================= */

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

.zuytara-experience-intro h1 {
  margin: 10px 0 25px;
}

.zuytara-experience-intro p {
  max-width: 760px;
  margin: 0 auto;
}


/* SPLIT SECTIONS */

.zuytara-experience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.zuytara-experience-reverse {
  grid-template-columns: 1fr 1fr;
}

.zuytara-experience-image {
  width: 100%;
  overflow: hidden;
}

.zuytara-experience-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* .zuytara-experience-content {
  max-width: 600px;
} */

.zuytara-experience-content h2 {
  margin: 10px 0 25px;
}

.zuytara-experience-content p {
  margin-bottom: 18px;
}


/* THALPE CARD */

.zuytara-experience-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.zuytara-experience-card-image {
  min-height: 500px;
}

.zuytara-experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zuytara-experience-card-content {
  padding: 70px 55px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.zuytara-experience-card-content h2 {
  margin: 10px 0 25px;
}


/* HEADING */

.zuytara-experience-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 55px;
}

.zuytara-experience-heading h2 {
  margin-top: 10px;
}


/* GALLE WIDE */

.zuytara-experience-wide {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
}

.zuytara-experience-wide-image {
  height: 450px;
}

.zuytara-experience-wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zuytara-experience-wide-content {
  padding: 55px;
}


/* THREE CARDS */

.zuytara-experience-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.zuytara-experience-small-card {
  text-align: center;
}

.zuytara-experience-small-image {
  height: 350px;
  overflow: hidden;
  margin-bottom: 25px;
}

.zuytara-experience-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zuytara-experience-small-card h3 {
  margin-bottom: 15px;
}


/* NATURE */

.zuytara-experience-nature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.zuytara-experience-nature-image {
  height: 520px;
}

.zuytara-experience-nature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zuytara-experience-nature-content {
  padding: 60px;
}

.zuytara-experience-nature-content h2 {
  margin: 10px 0 25px;
}


/* FINAL */

.zuytara-experience-final {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.zuytara-experience-final h2 {
  margin: 10px 0 25px;
}

.zuytara-experience-final p {
  max-width: 700px;
  margin: 0 auto 18px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

  .zuytara-experience-split,
  .zuytara-experience-card,
  .zuytara-experience-wide,
  .zuytara-experience-nature {
    grid-template-columns: 1fr;
  }

  .zuytara-experience-reverse .zuytara-experience-content {
    order: 2;
  }

  .zuytara-experience-reverse .zuytara-experience-image {
    order: 1;
  }

  .zuytara-experience-three {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .zuytara-experience-image img {
    height: 420px;
  }

  .zuytara-experience-card-image {
    height: 420px;
    min-height: auto;
  }

  .zuytara-experience-card-content {
    padding: 50px 30px;
  }

  .zuytara-experience-wide-image {
    height: 400px;
  }

  .zuytara-experience-wide-content {
    padding: 40px 25px;
  }

  .zuytara-experience-nature-image {
    height: 420px;
  }

  .zuytara-experience-nature-content {
    padding: 45px 25px;
  }
}


@media (max-width: 600px) {

  .zuytara-experience-intro h1 {
    font-size: 34px;
  }

  .zuytara-experience-image img {
    height: 330px;
  }

  .zuytara-experience-card-image {
    height: 330px;
  }

  .zuytara-experience-small-image {
    height: 300px;
  }

  .zuytara-experience-wide-image {
    height: 300px;
  }

  .zuytara-experience-nature-image {
    height: 330px;
  }

  .zuytara-experience-card-content {
    padding: 40px 20px;
  }

  .zuytara-experience-nature-content {
    padding: 40px 20px;
  }
}


/* MAIN HEADING */

.zuytara-discover-heading {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.zuytara-discover-heading h2 {
  margin: 10px 0 20px;
  color: black;
}


/* EACH PLACE */

.zuytara-discover-place {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}


/* LEFT IMAGES */

.zuytara-discover-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.zuytara-discover-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}


/* CONTENT */

.zuytara-discover-content h3 {
  font-size: 32px;
  margin-bottom: 25px;
  color: black;
}

.zuytara-discover-content p {
  margin-bottom: 18px;
  color: black;
}


/* MOBILE */

@media(max-width:900px) {

  .zuytara-discover-place {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 70px;
  }

  .zuytara-discover-images img {
    height: 280px;
  }

}


.zuytara-discover-reverse {
  grid-template-columns: 1fr 1fr;
}

.zuytara-discover-reverse .zuytara-discover-content {
  order: 1;
  color: black;
}

.zuytara-discover-reverse .zuytara-discover-images {
  order: 2;
}

@media (max-width: 900px) {

  .zuytara-discover-reverse .zuytara-discover-content {
    order: 2;
  }

  .zuytara-discover-reverse .zuytara-discover-images {
    order: 1;
  }

}

.zuytara-map {
  height: 730px;
  overflow: hidden;
}

.zuytara-map iframe {
  width: 100%;
  height: 730px;
  display: block;
  border: 0;
}

@media (max-width: 900px) {

  .zuytara-map,
  .zuytara-map iframe {
    height: 500px;
  }
}


@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    justify-content: center;
    gap: 5px;
  }

   .zuytara-discover-reverse {
        grid-template-columns: 1fr;
    }
}