/* ============================
   Sukoon Coffee Co. - Styles
   Dark & Moody Theme
   ============================ */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Sukoon Brand Palette — warm coffee house */
  --color-bg: #1a1410;
  --color-bg-elevated: #211a14;
  --color-bg-card: #28201a;
  --color-bg-input: #2e2620;
  --color-surface: #342b24;
  --color-border: #3e3428;
  --color-border-light: #4d4136;

  /* Accent — warm cream from cups/logo */
  --color-gold: #e8ddd0;
  --color-gold-light: #f0e8de;
  --color-gold-dark: #c4b5a3;

  --color-success-deep: #2e2418;
  --color-success: #3d2e1e;
  --color-success-accent: #c4b5a3;

  --color-text: #ede6dc;
  --color-text-secondary: #b0a090;
  --color-text-muted: #7a6e62;

  --color-white: #ffffff;
  --color-black: #000000;

  /* Typography — warm & readable */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing — generous breathing room */
  --section-padding: clamp(5rem, 12vw, 10rem);
  --container-width: 1100px;
  --container-narrow: 720px;

  /* Border radius — soft & rounded */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Transitions — slow & gentle */
  --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: var(--color-text);
  position: relative;
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold-light);
}

/* --- Layout --- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
}

/* --- Light Cream Sections (alternating) --- */
.section--light {
  background: #f0e8de;
  color: #2a2018;
}

.section--light .section__label {
  color: #7a6e62;
}

.section--light .section__title {
  color: #1a1410;
}

.section--light .section__subtitle {
  color: #3a3028;
}

.section--light .text-gold {
  color: #a0703c;
}

.section--light .about__text em {
  color: #a0703c;
}

.section--light p,
.section--light .about__text {
  color: #3a3028;
}

.section--light .btn--primary {
  background: #1a1410;
  color: #f0e8de;
}

.section--light .btn--primary:hover {
  background: #2a2018;
  color: #f0e8de;
}

.section--light .btn--outline {
  border-color: #3a3028;
  color: #1a1410;
}

.section--light .btn--outline:hover {
  border-color: #1a1410;
  color: #1a1410;
}

.section--light .about__stat-number,
.section--light .about__stat-suffix {
  color: #1a1410;
}

.section--light .about__stat-label {
  color: #7a6e62;
}

.section--light .menu__card {
  background: #ffffff;
  border-color: #d4c8b8;
}

.section--light .menu__card--premium {
  border-color: #a0703c;
}

.section--light .menu__card-badge {
  background: #1a1410;
  color: #f0e8de;
}

.section--light .menu__card-title {
  color: #1a1410;
}

.section--light .menu__card-note {
  color: #7a6e62;
}

.section--light .menu__item {
  color: #2a2018;
  border-color: #d4c8b8;
}

.section--light .form__label {
  color: #1a1410;
}

.section--light .form__input,
.section--light .form__select,
.section--light textarea.form__input {
  background: #ffffff;
  border-color: #c4b5a3;
  color: #1a1410;
}

.section--light .form__input::placeholder {
  color: #a09080;
}

.section--light .form__input:focus,
.section--light .form__select:focus {
  border-color: #1a1410;
}

.section--light .form__autocomplete {
  background: #ffffff;
  border-color: #c4b5a3;
}

.section--light .form__suggestions {
  background: #ffffff;
  border-color: #c4b5a3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.section--light .form__suggestion {
  color: #1a1410;
}

.section--light .form__suggestion:hover {
  background: #f0e8de;
}

.section--light a {
  color: #a0703c;
}

.section__label {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section__label--center {
  text-align: center;
}

.section__label--large {
  font-size: clamp(2rem, 5vw, 3rem);
}

.section__label--xlarge {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 2rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.section__title--center {
  text-align: center;
}

.section__title--large {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.text-gold {
  color: var(--color-gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-gold);
  color: #1a1410;
}

.btn--primary:hover {
  background: var(--color-gold-light);
  color: #1a1410;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn__icon {
  width: 18px;
  height: 18px;
}

.btn__loading {
  display: none;
}

.btn--loading .btn__text {
  display: none;
}

.btn--loading .btn__loading {
  display: inline;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(26, 20, 16, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(58, 48, 40, 0.4);
}

.nav__container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  text-decoration: none;
}

.nav__logo:hover {
  color: var(--color-text);
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0.5rem 1.25rem;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition);
}

.nav__toggle--active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle--active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a1410 0%, #28201a 40%, #1e1812 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45, 74, 45, 0.1) 0%, transparent 60%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  opacity: 0.5;
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero__logo {
  width: 140px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero__brand {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero__title-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-top: -0.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-gold-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__accent {
  color: var(--color-gold);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* --- About --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about__text--centered {
  text-align: center;
}

.about__stats--centered {
  justify-content: center;
}


.about__text {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about__text em {
  color: var(--color-gold);
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.1em;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.about__stat {
  display: flex;
  flex-direction: column;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.about__stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.about__image-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-card);
}

.about__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  pointer-events: none;
}

.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about__image-frame:hover img {
  transform: scale(1.03);
}

.about__carousel {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-card);
}

.about__carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.about__carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.about__carousel-track img.active {
  opacity: 1;
}

.about__carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.about__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(237, 230, 220, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.about__carousel-dot.active {
  background: var(--color-text);
  transform: scale(1.2);
}

/* --- Services --- */
.services {
  background: var(--color-bg-elevated);
}

.service-single {
  max-width: 800px;
  margin: 0 auto;
}

.service-single__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}

.service-feature:hover {
  border-color: var(--color-border-light);
}

.service-feature__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.service-feature__icon svg {
  width: 100%;
  height: 100%;
}

.service-feature__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.service-feature__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.service-single__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* --- Menu --- */
.menu {
  /* background controlled by section--light */
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.menu__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  position: relative;
  border-radius: var(--radius-md);
}

.menu__card--premium {
  border-color: var(--color-gold-dark);
}

.menu__card-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
}

.menu__card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.menu__card-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.menu__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu__items--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.menu__item {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  font-weight: 300;
}

.menu__items--two-col .menu__item:nth-last-child(1),
.menu__items--two-col .menu__item:nth-last-child(2) {
  border-bottom: none;
}

.menu__items:not(.menu__items--two-col) .menu__item:last-child {
  border-bottom: none;
}

.menu__cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- Gallery --- */
.gallery__loading {
  text-align: center;
  padding: 3rem 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.gallery__grid--instagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.gallery__post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-card);
  cursor: pointer;
}

.gallery__post img,
.gallery__post video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition);
}

.gallery__post:hover img,
.gallery__post:hover video {
  transform: scale(1.05);
  opacity: 0.7;
}

.gallery__post-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(0, 0, 0, 0.3);
}

.gallery__post:hover .gallery__post-overlay {
  opacity: 1;
}

.gallery__post-overlay svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.gallery__post-video-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: var(--color-white);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.gallery__post-video-icon svg {
  width: 20px;
  height: 20px;
}

.gallery__cta {
  text-align: center;
}

/* --- FAQ --- */
.faq {
  background: var(--color-bg-elevated);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] .faq__question::after {
  content: '−';
}

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

.faq__answer {
  padding: 0 0 1.5rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  max-width: 90%;
}

/* --- Booking Form --- */
.booking {
  /* background controlled by section--light */
}

.form {
  margin-top: 1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-bg-input);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--transition);
  border-radius: var(--radius-sm);
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: var(--color-text-muted);
}

.form__input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form__autocomplete {
  position: relative;
}

.form__suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a1714;
  border: 1px solid rgba(160, 150, 136, 0.3);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.form__suggestions--visible {
  display: block;
}

.form__suggestion {
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.form__suggestion:hover {
  background: rgba(160, 150, 136, 0.15);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a09688' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 1.5rem;
  border: 1px solid var(--color-success-accent);
  background: var(--color-success-deep);
  border-radius: var(--radius-md);
}

.form__success svg {
  width: 48px;
  height: 48px;
  color: var(--color-success-accent);
  margin: 0 auto 1rem;
}

.form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.form__success p {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.form__success .btn {
  margin-top: 0.5rem;
}

.form__success--visible {
  display: block;
}

/* --- Bookings Closed State --- */
.form-closed {
  /* display set inline by JS (none by default, flex when form is disabled) */
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem 1rem;
  margin: 1rem auto 0;
  max-width: 640px;
  width: 100%;
}

.form-closed > * {
  width: 100%;
  flex: 0 0 auto;
}

.form-closed__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.form-closed__text {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0 0 1rem;
  line-height: 1.65;
}

.form-closed__text--small {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.form-closed__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-elevated);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__tagline {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: all var(--transition);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a,
.footer__links p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

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

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about__grid {
    gap: 3rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-elevated);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    border-left: 1px solid var(--color-border);
    transition: right var(--transition);
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__link::after {
    display: none;
  }

  .nav__link--cta {
    border: 1px solid var(--color-gold);
    padding: 0.75rem 1.25rem;
    text-align: center;
    margin-top: 1rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image {
    order: -1;
  }

  .about__stats {
    gap: 1.5rem;
  }

  .service-feature {
    padding: 1.25rem 1.5rem;
  }

  .service-single__cta {
    flex-direction: column;
    align-items: center;
  }

  .menu__grid {
    grid-template-columns: 1fr;
  }

  .menu__items--two-col {
    grid-template-columns: 1fr;
  }

  .section--light .menu__items--two-col .menu__item:nth-last-child(2) {
    border-bottom: 1px solid #d4c8b8 !important;
  }

  .menu__card {
    padding: 1.75rem;
  }

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

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .about__stats {
    flex-direction: column;
    gap: 1.25rem;
  }
}

/* --- Mobile Nav Overlay --- */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.nav__overlay--visible {
  opacity: 1;
  visibility: visible;
}
