@import url('https://fonts.googleapis.com/css2?family=Aboreto&family=Quattrocento:wght@400;700&display=swap');

:root {
  --bg: #284753;
  --bg-soft: #3b6879;
  --panel: #4b7889;
  --panel-strong: #6a97a9;
  --text: #eef6f8;
  --text-strong: #ffffff;
  --muted: #dbeaf0;
  --line: rgba(232, 244, 247, 0.18);
  --accent: #a6d0de;
  --accent-soft: rgba(166, 208, 222, 0.24);
  --max: 1180px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Quattrocento', Georgia, serif;
  background: linear-gradient(180deg, #4f7b8d, #355b6a 40%, #243f49 100%);
  color: var(--text);
  line-height: 1.7;
}
body.nav-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(33, 58, 68, 0.94);
  border-bottom: 1px solid rgba(232, 244, 247, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  min-height: 84px;
}
header nav {
  flex: 1 1 auto;
  min-width: 0;
}
.site-nav {
  display: block;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 248, 241, 0.2);
  border-radius: 999px;
  background: rgba(255,248,241,0.06);
  color: #fff8f1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .28rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-toggle:hover,
.nav-toggle:focus-visible,
body.nav-open .nav-toggle {
  border-color: rgba(255, 228, 198, 0.72);
  background: rgba(214, 184, 150, 0.18);
}
.brand {
  font-family: 'Aboreto', cursive;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff8f1;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  color: rgba(255, 248, 241, 0.82);
  font-family: 'Aboreto', cursive;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: .35rem;
  transition: color 180ms ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 228, 198, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
nav a:hover, nav a[aria-current="page"] { color: #fff8f1; }
nav a:hover::after, nav a[aria-current="page"]::after { transform: scaleX(1); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(166, 208, 222, 0.88);
  background: linear-gradient(180deg, rgba(166, 208, 222, 0.34), rgba(95, 145, 162, 0.28));
  color: #fffdf9;
  font-family: 'Aboreto', cursive;
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn.secondary {
  background: rgba(232, 244, 247, 0.07);
  color: #fffdf9;
  border-color: rgba(232, 244, 247, 0.42);
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}
.nav-cta {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: .72rem;
  padding: .82rem 1rem;
  padding-inline: 1.35rem;
  border-color: rgba(166, 208, 222, 0.82);
  background: linear-gradient(180deg, rgba(166, 208, 222, 0.34), rgba(95, 145, 162, 0.24));
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(180deg, rgba(185, 221, 232, 0.42), rgba(109, 163, 181, 0.3));
}
.hero, .home-hero { padding: 5rem 0 4rem; }
.home-landing {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding: 4rem 0;
}
.home-landing.home-landing-banner {
  padding: 0;
  min-height: calc(100vh - 84px);
  border-bottom: 1px solid rgba(232, 244, 247, 0.12);
}
.home-landing-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 860px;
}
.home-landing-banner .container {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
}
.home-landing-banner::before {
  background: linear-gradient(180deg, rgba(17, 31, 37, 0.48), rgba(24, 45, 53, 0.6));
}
.home-landing-banner .page-banner-copy {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}
.home-landing h1 {
  font-size: clamp(2.4rem, 5.1vw, 4.2rem);
  margin-bottom: .35rem;
}
.landing-subtitle {
  margin: 0;
  max-width: 34ch;
  color: #edf7fa;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.6;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; }
.kicker { color: var(--accent); text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; font-family: 'Aboreto', cursive; }
h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 1rem;
  font-family: 'Aboreto', cursive;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-strong);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.78;
}
.card p,
.muted,
.notice,
.list,
.policy-list,
.detail-list p,
.detail-list div {
  color: var(--muted);
  line-height: 1.8;
}
.panel, .card {
  background: rgba(75, 120, 137, 0.86);
  border: 1px solid rgba(232, 244, 247, 0.14);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}
.panel { padding: 1.25rem; }
.hero-card {
  min-height: 420px;
  padding: 1.5rem;
  display: grid;
  align-content: end;
  color: #fffdf9;
  background: linear-gradient(160deg, rgba(18, 12, 11, 0.12), rgba(34, 24, 22, 0.24)), url('assets/images/jamuna-hero.webp') center/cover;
}
.hero-card .badge,
.hero-card h2,
.hero-card p,
.hero-card .muted {
  color: #fffdf9;
}
.hero-card .badge {
  border-color: rgba(255, 248, 241, 0.32);
  background: rgba(255, 248, 241, 0.1);
}
.section { padding: 4rem 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.grid-2, .split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.section-heading {
  display: grid;
  gap: .55rem;
}
.narrow-copy {
  max-width: 720px;
}
.why-southwick-grid {
  align-items: stretch;
}
.why-southwick-card {
  padding: 1.5rem;
}
.why-southwick-card p {
  margin: 0;
}
.why-southwick-card-wide {
  grid-column: 1 / -1;
}
.card { padding: 1.4rem; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; margin-bottom: .9rem; }
.card p, .muted { color: var(--muted); }
.footer { padding: 2rem 0 4rem; border-top: 1px solid var(--line); color: var(--muted); }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  color: var(--accent);
  font-family: 'Aboreto', cursive;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--text-strong);
}
.badge { display: inline-block; padding: .35rem .65rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .85rem; }
.list { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.notice { border-left: 3px solid var(--accent); padding-left: 1rem; color: var(--muted); }
.feature-media {
  min-height: 320px;
  border-radius: 24px;
  border: 1px solid rgba(255, 248, 241, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  background-size: cover;
  background-position: center;
}
.align-center { align-items: center; }
.square-media { min-height: 420px; }
.cinematic-band {
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff8f1;
}
.home-fixed-band {
  background-attachment: fixed;
}
.story-split-grid {
  grid-template-columns: 1fr 1fr;
}
.story-copy-block {
  align-content: center;
}
.reverse-on-desktop > :first-child {
  order: 2;
}
.reverse-on-desktop > :last-child {
  order: 1;
}
.narrow-center {
  max-width: 760px;
  margin: 0 auto;
}
.center-lead {
  margin-left: auto;
  margin-right: auto;
}
.center-row {
  justify-content: center;
}
.image-cards img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}
.media-card {
  display: grid;
  gap: .25rem;
}
.uniform-media-card {
  align-content: start;
}
.uniform-media-card h3 {
  margin-bottom: .6rem;
}
.signature-grid {
  align-items: start;
}
.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: .15em;
  font-weight: 600;
}
.home-slider-panel {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(90, 64, 55, 0.16);
  box-shadow: 0 24px 52px rgba(86, 64, 52, 0.14);
  background-size: cover;
  background-position: center;
  transition: background-image 700ms ease-in-out;
}
.home-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 21, 20, 0.22), rgba(49, 37, 35, 0.4));
}
.home-slider-content {
  position: relative;
  z-index: 1;
  min-height: 460px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 2rem;
  max-width: 620px;
}
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.info-strip .card { padding: 1.2rem; }
.menu-block { display: grid; gap: .9rem; }
.menu-hub-card {
  display: grid;
  gap: 1rem;
}
.menu-hub-copy {
  margin: 0;
}
.menu-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.menu-jump-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .84rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 186, 156, 0.42);
  background: rgba(223, 186, 156, 0.18);
  color: var(--text-strong);
  font-family: 'Aboreto', cursive;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-grid {
  display: grid;
  gap: 1rem;
}
.menu-card {
  display: grid;
  gap: 1.4rem;
}
.menu-card-head {
  display: grid;
  gap: .65rem;
}
.menu-card-title {
  margin: 0;
}
.menu-card-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.menu-section-block {
  display: grid;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.menu-section-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}
.menu-section-title {
  margin: 0;
  font-size: 1.4rem;
}
.menu-prose {
  display: grid;
  gap: .75rem;
}
.menu-prose p {
  margin: 0;
}
.menu-section-head {
  display: grid;
  gap: .35rem;
  margin-bottom: 1rem;
}
.menu-section-description {
  margin: 0;
}
.menu-list {
  display: grid;
}
.menu-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item-row:first-child {
  padding-top: 0;
}
.menu-item-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.menu-item-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
  margin-bottom: .35rem;
}
.menu-item-text strong {
  color: var(--text);
}
.menu-item-text p {
  margin: 0;
  color: var(--muted);
}
.menu-price {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.tag-chip {
  display: inline-flex;
  align-items: center;
  padding: .18rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(211, 176, 122, 0.28);
  background: rgba(211, 176, 122, 0.08);
  color: var(--accent);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.gallery-grid img { height: 220px; object-fit: cover; border-radius: 18px; margin-bottom: 1rem; }
.table { width: 100%; border-collapse: collapse; }
.table td { padding: .8rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.menu-block .table td:first-child { width: 34%; color: var(--text); }
.menu-block { display: grid; gap: .9rem; }
.menu-note { font-size: .95rem; color: var(--muted); }
.stack { display: grid; gap: 1rem; }
.detail-list {
  display: grid;
  gap: .85rem;
}
.detail-list strong {
  display: block;
  color: var(--text);
  margin-bottom: .15rem;
}
.detail-list p,
.detail-list div { color: var(--muted); }
.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.mini-stat {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 241, 0.06);
}
.mini-stat strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--text);
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.inline-links a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: .15em;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.policy-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.policy-list li + li { margin-top: .55rem; }
.page-banner {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 248, 241, 0.12);
}
.page-banner.home-landing-banner {
  min-height: calc(100vh - 84px);
}
.page-banner-media-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1200ms ease-in-out;
}
.page-banner-media-layer.is-active {
  opacity: 1;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 16, 15, 0.48), rgba(38, 27, 24, 0.62));
  z-index: 1;
}
.page-banner .container {
  position: relative;
  z-index: 2;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}
.page-banner-copy {
  max-width: 760px;
}
.page-banner .lead {
  color: #f4e8db;
}
.home-landing-banner .landing-subtitle {
  max-width: 28ch;
  color: #f6fbfd;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}
.story-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
.story-section.reverse .story-copy {
  order: 2;
}
.story-section.reverse .story-media {
  order: 1;
}
.story-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}
.story-media {
  min-height: 420px;
  border-radius: 24px;
  border: 1px solid rgba(255, 248, 241, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  background-size: cover;
  background-position: center;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}
.map-frame {
  width: 100%;
  min-height: 440px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}
.footer-top {
  display: grid;
  gap: .65rem;
  margin-bottom: 1.6rem;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: start;
}
.footer-columns-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: .75rem;
}
.footer-link-list {
  display: grid;
  gap: .6rem;
}
.footer-link-list a,
.footer-note a {
  color: var(--accent);
}
.footer-card {
  background: rgba(232, 244, 247, 0.06);
}
.footer-detail-list {
  gap: .7rem;
}
.footer .eyebrow {
  margin-bottom: .15rem;
}
.footer-col .detail-list p,
.footer-col .detail-list div,
.footer-col .footer-link-list a,
.footer-legal a {
  font-size: .97rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.footer-legal {
  margin: 0;
}
.footer-legal a {
  color: var(--muted);
}
.footer-bottom .footer-social {
  margin-top: 0;
}
.reveal,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.footer-note {
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .split, .gallery-grid, .info-strip, .mini-stat-grid, .faq-grid, .story-section, .contact-layout, .footer-columns { grid-template-columns: 1fr; }
  body {
    font-size: 1.04rem;
  }
  h1 {
    font-size: clamp(2.55rem, 9vw, 4rem);
    line-height: 1.12;
  }
  h2 {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
    line-height: 1.16;
  }
  .lead {
    font-size: 1.1rem;
    line-height: 1.82;
    max-width: 34ch;
  }
  .menu-card-summary,
  .menu-item-text p,
  .notice,
  .muted,
  .card p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .nav {
    align-items: center;
    flex-wrap: wrap;
    padding: .9rem 0;
    gap: .85rem;
    min-height: auto;
  }
  .brand {
    flex: 1 1 auto;
  }
  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: auto;
  }
  .nav-cta {
    order: 2;
    width: auto;
    margin-left: auto;
    padding: .72rem .92rem;
  }
  header nav {
    order: 4;
    width: 100%;
    flex: 0 0 100%;
  }
  .site-nav {
    display: none;
    padding-top: .4rem;
  }
  body.nav-open .site-nav {
    display: block;
    animation: navReveal 180ms ease-out;
  }
  .site-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: .6rem;
    padding: .8rem;
    border: 1px solid rgba(232, 244, 247, 0.18);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(63, 104, 125, 0.98), rgba(46, 80, 93, 0.98));
    box-shadow: 0 22px 48px rgba(34, 55, 65, 0.24);
    backdrop-filter: blur(18px);
  }
  .site-nav li {
    min-width: 0;
  }
  .menu-item-row {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .menu-price {
    justify-self: start;
  }
  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .9rem 1rem;
    border: 1px solid rgba(255, 248, 241, 0.14);
    border-radius: 16px;
    background: rgba(255,248,241,0.06);
    white-space: normal;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    border-color: rgba(211, 176, 122, 0.38);
    background: rgba(211, 176, 122, 0.08);
    transform: translateY(-1px);
  }
  .nav > .btn { margin-left: 0; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-fixed-band {
    background-attachment: scroll;
  }
  .reverse-on-desktop > :first-child,
  .reverse-on-desktop > :last-child {
    order: initial;
  }
  .page-banner {
    min-height: 380px;
  }
  .page-banner .container {
    padding-top: 4rem;
    padding-bottom: 3.25rem;
  }
  .story-section.reverse .story-copy,
  .story-section.reverse .story-media {
    order: initial;
  }
}

@keyframes navReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

