/* ==========================================================================
   Arianna Trattoria Romana — stylesheet
   Palette extracted from the restaurant's own logo:
   ink #1B1B1B · cream #FAF6F0 · gold #C9A45C · gold-deep #8C6A2E · terracotta #D98F72
   ========================================================================== */

:root {
  --ink: #1b1b1b;
  --ink-soft: #322c26;
  --cream: #faf6f0;
  --cream-alt: #f2e9df;
  --gold: #c9a45c;
  --gold-deep: #8c6a2e;
  --terracotta: #d98f72;
  --terracotta-soft: #f0d3c4;
  --line: rgba(27, 27, 27, 0.12);
  --white: #ffffff;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --max-width: 1180px;
  --radius: 2px;
  --shadow-soft: 0 18px 40px -20px rgba(27, 27, 27, 0.25);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 110px 0;
}

.section--alt {
  background: var(--cream-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: 0.5px;
}

.section-head p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}

.rule--left {
  margin: 22px 0 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--full {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.is-scrolled {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(6px);
  padding: 12px 0;
  box-shadow: 0 8px 24px -18px rgba(27, 27, 27, 0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  transition: color 0.35s ease;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.is-scrolled .brand,
.menu-page-header .brand {
  color: var(--ink);
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-desktop a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.is-scrolled .nav-desktop a {
  color: var(--ink-soft);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--gold);
  border-color: var(--gold);
}

.is-scrolled .nav-desktop a:hover,
.is-scrolled .nav-desktop a.is-active {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta-link {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.is-scrolled .cta-link {
  color: var(--ink-soft);
}

.cta-link:hover {
  color: var(--gold);
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 280px;
  margin-top: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 1px;
  background: var(--white);
  transition: background 0.3s ease;
}

.is-scrolled .nav-toggle span {
  background: var(--ink);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.nav-mobile.is-open {
  transform: translateY(0);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cream);
  letter-spacing: 1px;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-close {
  position: absolute;
  top: 26px;
  right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at top, #2a2521 0%, var(--ink) 60%);
  color: var(--cream);
  overflow: hidden;
  padding: 140px 20px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(
      120deg,
      rgba(201, 164, 92, 0.06) 0px,
      rgba(201, 164, 92, 0.06) 1px,
      transparent 1px,
      transparent 90px
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 15, 13, 0.78) 0%, rgba(18, 15, 13, 0.6) 45%, rgba(18, 15, 13, 0.85) 100%);
  pointer-events: none;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-logo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  margin: 0 auto 30px;
  box-shadow: 0 0 0 1px rgba(201, 164, 92, 0.4), var(--shadow-soft);
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 96px);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.hero h1 span {
  display: block;
  font-size: clamp(18px, 2.4vw, 24px);
  font-family: var(--font-body);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 18px;
}

.hero-tagline {
  margin: 30px auto 0;
  max-width: 520px;
  font-size: 18px;
  color: rgba(250, 246, 240, 0.8);
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201, 164, 92, 0.1), var(--gold));
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-media .frame {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-body p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 0 18px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-stats div {
  border-left: 1px solid var(--gold);
  padding-left: 16px;
}

.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
}

.about-stats span {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Menu ---------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
}

.menu-tab {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.menu-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.menu-panel {
  display: none;
}

.menu-panel.is-active {
  display: block;
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
}

.menu-item {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  break-inside: avoid;
}

.menu-item-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-item-row h4 {
  font-size: 20px;
  white-space: nowrap;
}

.menu-item-row .fill {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}

.menu-item-row .price {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gold-deep);
  white-space: nowrap;
}

.menu-item p {
  margin: 8px 0 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  opacity: 0.85;
}

.menu-note {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--ink-soft);
}

.menu-cta {
  text-align: center;
  margin-top: 44px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

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

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(27, 27, 27, 0.75), transparent);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover figcaption {
  opacity: 1;
}

.gallery-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 24px;
  opacity: 0.7;
}

/* ---------- Hours & Location ---------- */
.hours-section {
  background: var(--ink);
  color: var(--cream);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.hours-section .eyebrow {
  color: var(--gold);
}

.hours-section h2 {
  color: var(--white);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.hours-table tr {
  border-bottom: 1px solid rgba(250, 246, 240, 0.12);
}

.hours-table td {
  padding: 14px 0;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.hours-table td:first-child {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
}

.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-size: 18px;
}

.hours-table tr.is-closed td:last-child {
  color: rgba(250, 246, 240, 0.45);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--cream);
  transition: color 0.25s ease;
}

.contact-list a:hover {
  color: var(--gold);
}

.contact-list svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.35) contrast(1.05);
}

.social-row {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.social-row a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 246, 240, 0.3);
  border-radius: 50%;
  transition: all 0.25s ease;
}

.social-row a:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.social-row svg {
  width: 17px;
  height: 17px;
  stroke: var(--cream);
}

.social-row a:hover svg {
  stroke: var(--ink);
}

/* ---------- Reservation ---------- */
.reserve-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.reserve-copy p {
  color: var(--ink-soft);
  font-size: 17px;
}

.reserve-quick {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reserve-quick a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  width: fit-content;
  padding-bottom: 2px;
}

.reserve-form {
  background: var(--white);
  padding: 44px;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  border-radius: var(--radius);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--ink-soft);
  opacity: 0.75;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success.is-visible {
  display: block;
}

.reserve-form.is-submitted form {
  display: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.75);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(250, 246, 240, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14.5px;
}

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

.footer-col ul li:has(.fill) {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.footer-col ul li .fill {
  flex: 1;
  border-bottom: 1px dotted rgba(250, 246, 240, 0.25);
  transform: translateY(-3px);
}

.footer-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 246, 240, 0.45);
}

.footer-soon em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(199, 161, 90, 0.4);
  border-radius: 20px;
  padding: 2px 8px;
}

.btn--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(250, 246, 240, 0.45);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ---------- Utilities ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------- Page header (sub-pages) ---------- */
.page-header {
  position: relative;
  padding: 168px 0 76px;
  background: radial-gradient(ellipse at top, #2a2521 0%, var(--ink) 65%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.page-header-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(
      120deg,
      rgba(201, 164, 92, 0.06) 0px,
      rgba(201, 164, 92, 0.06) 1px,
      transparent 1px,
      transparent 90px
    );
  pointer-events: none;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 15, 13, 0.82) 0%, rgba(18, 15, 13, 0.68) 55%, rgba(18, 15, 13, 0.88) 100%);
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.55);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--cream);
}

.page-header h1 {
  font-size: clamp(38px, 5.5vw, 58px);
  color: var(--white);
}

.page-header p {
  margin: 16px auto 0;
  max-width: 520px;
  color: rgba(250, 246, 240, 0.75);
  font-size: 16px;
}

/* ---------- Home: teaser grids ---------- */
.teaser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.teaser-head .section-head {
  margin: 0;
  text-align: left;
  max-width: 560px;
}

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

.highlight-card {
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.highlight-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.highlight-card .tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.highlight-card h3 {
  font-size: 24px;
  margin-top: 10px;
}

.highlight-card p {
  margin: 10px 0 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.highlight-card .price {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gold-deep);
}

.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

/* ---------- Home: services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  padding: 44px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.service-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-alt);
  color: var(--gold-deep);
}

.service-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-deep);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 23px;
}

.service-card p {
  margin: 12px 0 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.service-card .btn {
  padding: 12px 26px;
  font-size: 12px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--ink);
}

.faq-question .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: var(--gold-deep);
  transition: transform 0.3s ease;
}

.faq-question .icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.faq-question .icon::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-question .icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0 4px 26px;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* ---------- Reviews ---------- */
.reviews-section {
  display: none;
}

.reviews-section.is-visible {
  display: block;
}

.reviews-rating {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-rating .stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
}

.reviews-rating p {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

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

.review-card {
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.review-card .stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}

.review-card footer {
  margin-top: 18px;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about,
  .hours-grid,
  .reserve-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media .frame {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-grid,
  .reviews-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-desktop,
  .nav-actions .btn,
  .nav-actions .cta-link {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 76px 0;
  }

  .menu-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

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

  .highlight-grid,
  .reviews-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .teaser-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reserve-form {
    padding: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
