/* ==========================
   RESET
========================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #111111;
    color: #ffffff;
    line-height: 1.6;
}

/* ==========================
   VARIABLES
========================== */

:root {

    --bg: #111111;
    --bg-secondary: #1A1A1A;

    --text: #FFFFFF;
    --text-light: #CFCFCF;

    --accent: #C89B5E;

    --max-width: 1200px;

    --radius: 12px;

}

/* ==========================
   HEADER
========================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 12px 42px;
  background: rgba(5, 7, 8, 0.62);
  backdrop-filter: blur(14px);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr;
    padding: 10px 18px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-cta {
    display: none;
  }
}

/* ==========================
   GENERAL
========================== */

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    padding: 100px 30px;
}

/* ==========================
   HEADER
========================== */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 60px;

    z-index: 100;

    background: rgba(0,0,0,.45);
    backdrop-filter: blur(10px);

}

.logo {

    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .2rem;

}
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-logo {
  width: 72px;
  height: 72px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text small {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 650px) {
  .site-logo {
    width: 54px;
    height: 54px;
  }

  .logo-text {
    display: none;
  }
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.language-button {
  min-width: 42px;
  min-height: 36px;
  padding: 6px 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.language-button.active {
  background: var(--accent);
  color: #111;
}

.main-nav {

    display: flex;
    gap: 2rem;

}

.main-nav a {

    transition: .25s;

}

.main-nav a:hover {

    color: var(--accent);

}

.header-cta {

    background: var(--accent);

    color: #111;

    padding: .8rem 1.5rem;

    border-radius: 100px;

    font-weight: 600;

}

/* ==========================
   HERO
========================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;

}

.hero-overlay {

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.60)
    );

}

.hero-content {

    position: relative;

    max-width: 700px;

    padding: 0 60px;

}

.eyebrow {

    color: var(--accent);

    text-transform: uppercase;

    letter-spacing: .2rem;

    margin-bottom: 20px;

}

h1 {

    font-size: clamp(3rem,7vw,5.5rem);

    line-height: 1.05;

    margin-bottom: 25px;

}

.hero-text {

    color: var(--text-light);

    font-size: 1.2rem;

    max-width: 550px;

    margin-bottom: 40px;

}

.hero-actions {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    padding: 18px 30px;

    border-radius: 100px;

    transition: .3s;

}

.btn-primary {

    background: var(--accent);

    color: #111;

}

.btn-primary:hover {

    transform: translateY(-2px);

}

.btn-secondary {

    border: 1px solid white;

}

.btn-secondary:hover {

    background: white;

    color: #111;

}

/* ==========================
   EXPERIENCE
========================== */

.experience-section {
  padding: 110px 32px;
  background: #111;
}

.section-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.experience-copy {
  max-width: 620px;
}

.experience-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.experience-copy p:not(.section-label) {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 1.08rem;
}

.experience-image-wrapper {
  height: 520px;
  overflow: hidden;
  border-radius: 28px;
}

.experience-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================
   MENU
========================== */

.menu-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(143, 164, 78, 0.14), transparent 32%),
    #10120e;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 42px 0 32px;
}

.menu-tab {
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.menu-book {
  position: relative;
  width: min(850px, 100%);
  margin-inline: auto;
}

.menu-note {
    margin: 64px auto 24px;
    max-width: 700px;
}

.menu-page {
  display: none;
  min-height: 610px;
  padding: 58px clamp(24px, 6vw, 72px);
  border: 10px solid #4b5133;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 252, 236, 0.96), rgba(245, 239, 214, 0.96)),
    url("../images/menu-texture.jpg");
  color: #24261d;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px rgba(64, 72, 41, 0.25);
}
.menu-subheading {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 44px 0 24px;

  color: #2f3523;

  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
}

.menu-subheading::before {
  content: "";
  width: 26px;
  height: 3px;

  flex-shrink: 0;

  border-radius: 999px;
  background: #6f7945;
}

.menu-subsection + .menu-subsection {
  margin-top: 52px;
}

.menu-page.active {
  display: block;
}

.menu-page-decoration {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 82px;
  height: 82px;

  margin: 0 auto 18px;

  border: 1px solid rgba(84, 94, 53, 0.22);
  border-radius: 50%;

  color: #66723e;
  background: rgba(102, 114, 62, 0.06);
}

.menu-page-decoration svg {
  width: 42px;
  height: 42px;

  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-kicker {
  margin-bottom: 12px;
  color: #66723e;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.menu-page h3 {
  margin-top: 0;
  margin-bottom: 46px;
}

.menu-list {
  display: grid;
  gap: 22px;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: end;
}

.menu-item-name {
  display: grid;
  gap: 3px;
}

.menu-item-name strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.menu-list {
  gap: 20px;
}

.menu-item-name small {
  max-width: 440px;
  color: #6a6d5c;
  font-size: 0.86rem;
  line-height: 1.35;
}

.menu-dots {
  min-width: 30px;
  border-bottom: 2px dotted rgba(36, 38, 29, 0.35);
  transform: translateY(-5px);
}

.menu-price {
  white-space: nowrap;
  color: #66723e;
  font-weight: 800;
}

@media (max-width: 600px) {
  .menu-page {
    min-height: auto;
    padding: 42px 22px;
    border-width: 6px;
  }

  .menu-list li {
    grid-template-columns: 1fr auto;
  }

  .menu-dots {
    display: none;
  }
}

/* ==========================
   GALLERY
========================== */

.gallery-section {
  padding: 110px 0;
  overflow: hidden;
  background: #0d0d0d;
}

.gallery-carousel {
  position: relative;
  margin-top: 50px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  height: 360px;
  overflow: hidden;
  border-radius: 24px;
  scroll-snap-align: start;
  background: #181818;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-size: 1.35rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

@media (max-width: 850px) {
  .gallery-track {
    grid-auto-columns: 82%;
  }

  .gallery-slide {
    height: 320px;
  }

  .carousel-button {
    display: none;
  }
}

/* ==========================
   SOCIAL
========================== */

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.social-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-button:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.social-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.social-section {
  padding: 90px 0 35px;
}

.visit-section {
  padding: 35px 0 110px;
}

.social-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

/* ==========================
   VISIT SECTION
========================== */
.visit-section {
  padding: 110px 0;
  background: #111;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 70px;
  align-items: stretch;
}

.map-wrapper {
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: #1b1b1b;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.visit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-content h2 {
  margin-bottom: 38px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.contact-list {
  display: grid;
  gap: 28px;
  margin-bottom: 38px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(210, 163, 95, 0.12);
  color: var(--accent);
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a {
  display: block;
  width: fit-content;
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact-item a:hover {
  color: #fff;
}

.visit-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 850px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 360px;
  }

  .visit-content {
    order: -1;
  }
}

/* ==========================
   FOOTER
========================== */

.site-footer {
  padding-top: 80px;
  background:
    linear-gradient(
      180deg,
      #0d0d0d 0%,
      #080909 100%
    );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 65px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}

.footer-logo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-link div {
  display: grid;
}

.footer-logo-link strong {
  color: #fff;
  font-size: 1.25rem;
}

.footer-logo-link span {
  margin-top: 4px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.footer-column h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-column address {
  display: grid;
  gap: 12px;
}

.footer-column a,
.footer-column address,
.footer-column address p {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
}

.footer-column a {
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.footer-social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.footer-social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-links a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
}

.footer-legal {
  display: flex;
  gap: 10px;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 950px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ==========================
   LEGAL PAGE
========================== */

.legal-page {
  background: #111;
}

.legal-hero {
  padding: 190px 0 90px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(210, 163, 95, 0.12),
      transparent 32%
    ),
    #0d0d0d;
}

.legal-hero h1 {
  max-width: 950px;
  margin: 15px 0 24px;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.95;
}

.legal-intro {
  max-width: 750px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
}

.legal-updated {
  margin-top: 22px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.legal-content {
  padding: 100px 0 130px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  justify-content: center;
  gap: 90px;
  align-items: start;
}

.legal-navigation {
  position: sticky;
  top: 125px;
}

.legal-navigation > p {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-navigation nav {
  display: grid;
  gap: 4px;
}

.legal-navigation a {
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.legal-navigation a:hover {
  color: #fff;
}

.legal-article {
  min-width: 0;
}

.legal-section {
  scroll-margin-top: 130px;
}

.legal-section + .legal-section {
  margin-top: 75px;
  padding-top: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h2 {
  margin-bottom: 26px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.legal-section p,
.legal-section li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.85;
}

.legal-section p + p {
  margin-top: 18px;
}

.legal-section ul {
  display: grid;
  gap: 11px;
  margin: 23px 0;
  padding-left: 23px;
}

.legal-section li::marker {
  color: var(--accent);
}

.legal-company-card,
.legal-contact-box {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(210, 163, 95, 0.25);
  border-radius: 20px;
  background: rgba(210, 163, 95, 0.06);
}

.legal-company-card p,
.legal-contact-box p {
  color: rgba(255, 255, 255, 0.8);
}

.legal-company-card a,
.legal-contact-box a,
.legal-external-link {
  color: var(--accent);
}

.legal-external-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .legal-hero {
    padding: 150px 0 70px;
  }

  .legal-content {
    padding: 75px 0 100px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .legal-navigation {
    position: static;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
  }

  .legal-navigation nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 20px;
  }
}

@media (max-width: 600px) {
  .legal-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .legal-navigation nav {
    grid-template-columns: 1fr;
  }

  .legal-section + .legal-section {
    margin-top: 55px;
    padding-top: 55px;
  }

  .legal-company-card,
  .legal-contact-box {
    padding: 23px;
  }
}

/* ==========================
   VIDEO
========================== */

.gallery-video{
    position:relative;
    cursor:pointer;
}

.video-trigger{

    position:absolute;
    inset:0;

    display:grid;
    place-items:center;

    background:none;
    border:0;

    cursor:pointer;
}

.play-circle{

    width:82px;
    height:82px;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    display:grid;
    place-items:center;

    color:white;

    transition:.25s;
}

.play-circle svg{

    width:34px;
    height:34px;

    margin-left:4px;
}

.gallery-video:hover .play-circle{

    transform:scale(1.08);

    background:#d8ab63;
}

/* ==========================
   VIDEO
========================== */

/* ==========================
   VIDEO
========================== */

.gallery-video {
  position: relative;
  cursor: pointer;
}

.video-trigger {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;

  width: 100%;
  height: 100%;

  padding: 0;
  border: 0;
  background: transparent;

  cursor: pointer;
}

.play-circle {
  display: grid;
  place-items: center;

  width: 82px;
  height: 82px;

  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.play-circle svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

.gallery-video:hover .play-circle {
  transform: scale(1.08);
  background: var(--accent);
  color: #111;
}

/* Modal hidden state */
.video-modal[hidden] {
  display: none;
}

/* Modal visible state */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
  width: min(520px, 92vw);
  max-height: 88vh;
}

.video-modal video {
  display: block;

  width: 100%;
  max-height: 88vh;

  border-radius: 20px;
  background: #000;

  object-fit: contain;
}

.video-close {
  position: absolute;
  top: 24px;
  right: 30px;
  z-index: 2;

  display: grid;
  place-items: center;

  width: 50px;
  height: 50px;

  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.55);
  color: #fff;

  font-size: 2rem;
  line-height: 1;

  cursor: pointer;
}

.video-close:hover {
  background: var(--accent);
  color: #111;
}

body.modal-open {
  overflow: hidden;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 900px) {
  .site-logo {
    width: 58px;
    height: 58px;
  }
}

.main-nav{

display:none;

}

.hero-content{

padding:0 20px;

}

section{

padding:70px 20px;

}
.site-header {
  transition: padding .3s ease, background .3s ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(0, 0, 0, .78);
}

@media (max-width: 600px) {
  .menu-subheading {
    margin-top: 36px;
    margin-bottom: 20px;
    font-size: 1.25rem;
  }

  .menu-subheading::before {
    width: 20px;
  }
}

}
@media (max-width: 800px) {
  .social-section {
    padding: 70px 0 25px;
  }

  .visit-section {
    padding: 25px 0 80px;
  }

  .social-inner {
    align-items: flex-start;
  }
}
/* ==========================
   MOBILE POLISH
========================== */

@media (max-width: 700px) {

  /* General mobile container */
  .section-container {
    width: min(100% - 32px, 1180px);
  }

  /* Reduce large gaps between sections */
  .experience-section,
  .menu-section,
  .gallery-section,
  .social-section,
  .visit-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* ==========================
     EXPERIENCE
  ========================== */

  .experience-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .experience-copy {
    max-width: none;
  }

  .experience-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 11vw, 3.6rem);
    line-height: 1;
  }

  .experience-copy p:not(.section-label) {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .experience-image-wrapper {
    width: 100%;
    height: 390px;
    border-radius: 22px;
  }

  .experience-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* Focus lower on the cocktail */
    object-position: 50% 82%;
  }

  /* ==========================
     MENU
  ========================== */

  .menu-section {
    padding-top: 70px;
    padding-bottom: 55px;
  }

  .menu-tabs {
    margin-top: 30px;
    margin-bottom: 24px;
  }

  .menu-note {
    margin-top: 42px;
    margin-bottom: 0;
    padding-inline: 12px;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* ==========================
     GALLERY
  ========================== */

  .gallery-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .gallery-carousel {
    margin-top: 32px;
  }

  .gallery-track {
    grid-auto-columns: 86%;
    gap: 14px;
  }

  .gallery-slide {
    height: 360px;
    border-radius: 20px;
  }

  /* ==========================
     SOCIAL
  ========================== */

  .social-section {
    padding-top: 58px;
    padding-bottom: 26px;
  }

  .social-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .social-links {
    gap: 10px;
  }

  .social-button {
    min-height: 44px;
    padding: 10px 15px;
  }

  /* ==========================
     VISIT
  ========================== */

  .visit-section {
    padding-top: 26px;
    padding-bottom: 70px;
  }

  .visit-grid {
    gap: 34px;
  }

  .visit-content h2 {
    margin-bottom: 28px;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 330px;
  }
}
