@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f5f5f5;
  --surface-2: #efefef;
  --ink: #0f0f0f;
  --muted: #5b5b5b;

  --brand-green: #0c5a49;
  --brand-green-2: #0b3f35;
  --brand-wine: #4b1f2b;
  --brand-wine-2: #2f141c;

  --font-body: "Manrope", "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --booking-sand: #f3eee7;
  --booking-ink: #1f1a17;
  --booking-accent: #0d5f4e;
  --booking-accent-2: #8b214f;
  --booking-glow: rgba(12, 90, 73, 0.18);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 18px 40px rgba(0, 0, 0, 0.22);

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  padding: 10px 8px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.74);
}

.nav-link:hover {
  color: rgba(0, 0, 0, 0.92);
}

.nav-link.is-active {
  color: rgba(0, 0, 0, 0.92);
  font-weight: 700;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 2px;
  background: rgba(0, 0, 0, 0.82);
  border-radius: var(--radius-pill);
}

.nav-link--muted {
  color: rgba(0, 0, 0, 0.6);
}

/* Hero */
.hero {
  padding: 56px 0 18px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 24px;
}

.hero-copy {
  max-width: 640px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.78);
  background: linear-gradient(180deg, #ffffff, var(--surface));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.hero-title {
  margin: 18px 0 10px;
  font-size: clamp(42px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.8px;
}

.hero-title-accent {
  text-transform: none;
}

.hero-title-brand {
  display: inline-block;
  margin-top: 6px;
  letter-spacing: 0.8px;
}

.hero-subtitle {
  margin: 0;
  max-width: 560px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 14px;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  min-height: 360px;
  position: relative;
}

.hero-blob {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.28;
}

.hero-blob--a {
  width: 320px;
  height: 320px;
  right: 18px;
  top: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(12, 90, 73, 1), rgba(12, 90, 73, 0));
}

.hero-blob--b {
  width: 260px;
  height: 260px;
  right: 120px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(75, 31, 43, 1), rgba(75, 31, 43, 0));
}

.hero-blob--c {
  width: 240px;
  height: 240px;
  right: 40px;
  top: 210px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn:active {
  transform: translateY(1px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.14);
}

.btn--primary {
  color: white;
  background: linear-gradient(180deg, var(--brand-green), var(--brand-green-2));
}

.btn--secondary {
  color: white;
  background: linear-gradient(180deg, var(--brand-wine), var(--brand-wine-2));
}

.btn--cta {
  height: 40px;
  padding: 0 20px;
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
  background: linear-gradient(180deg, var(--brand-wine), var(--brand-wine-2));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.btn--service {
  margin-top: 10px;
  height: 34px;
  padding: 0 14px;
  font-size: 11px;
  color: white;
  background: linear-gradient(to right, #8B1837, #03553F);
  box-shadow: 0 4px 4px rgba(0,0,0,0.2);
  border: 0;
  border-color: transparent;
}

.btn--service:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0,0,0,0.22);
}

.btn--service:active {
  transform: translateY(1px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.18);
}

/* Sections */
.section {
  padding: 44px 0;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.2px;
}

.section-subtitle {
  margin: 10px auto 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.64);
  max-width: 620px;
  font-size: 13px;
}

/* Cards */
.cards {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, var(--surface));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.card-icon {
  margin: 2px auto 10px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, var(--surface-2));
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.82);
}

.card-title {
  margin: 8px 0 6px;
  font-size: 14px;
}

.card-text {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.64);
}

.card-link {
  display: inline-flex;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* User toasts */
.user-toast-stack {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 9999;
  display: grid;
  gap: 8px;
  max-width: 360px;
}

/* Responsive: slightly smaller logo and text on narrow screens */
@media (max-width: 520px) {
  .brand-logo {
    width: 29px;
    height: 29px;
  }
  .brand-text {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 29px;
    height: 29px;
  }
  .brand-text {
    font-size: 15px;
  }
}
.user-toast {
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(15, 15, 15, 0.92);
  color: #ffffff;
  padding: 10px 12px;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.user-toast.is-visible { transform: translateY(0); opacity: 1; }
.user-toast.is-info { background: rgba(0,83,129,0.92); }
.user-toast.is-error { background: rgba(129,18,38,0.92); }

/* CTA */
.cta {
  margin: 32px auto 0;
  max-width: 720px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 10%, rgba(75, 31, 43, 0.9), rgba(0, 0, 0, 0) 60%),
    radial-gradient(circle at 80% 0%, rgba(12, 90, 73, 0.8), rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, #111111, #000000);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/cta-overlay.svg") center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 26px 22px;
  text-align: center;
  color: white;
}

.cta-title {
  margin: 0;
  font-size: 20px;
}

.cta-text {
  margin: 10px auto 14px;
  max-width: 520px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

/* Services */
.service-group {
  margin-top: 34px;
}

.service-group-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.service-group-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, var(--surface));
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-group-subtitle {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.64);
  font-size: 12px;
}

.service-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, var(--surface));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, var(--surface-2));
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card-title {
  margin: 0;
  font-size: 13px;
}

.service-card-text {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.64);
  font-size: 12px;
}

.service-card-list {
  margin: 10px 0 0;
  padding-left: 16px;
  color: rgba(0, 0, 0, 0.64);
  font-size: 11px;
}

.service-card-list li {
  margin: 4px 0;
}

/* Tabs */
.tabs {
  margin: 20px auto 0;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #ffffff, var(--surface));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.tab {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.72);
}

.tab.is-active {
  color: white;
  background: linear-gradient(180deg, var(--brand-green), var(--brand-green-2));
}

.portfolio-feedback {
  margin: 12px auto 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.68);
  font-size: 12px;
}

/* Portfolio grid */
.portfolio-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 64px;
  gap: 14px;
}

.portfolio-item {
  margin: 0;
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.portfolio-item::after {
  content: "Preview";
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.portfolio-item:hover,
.portfolio-item:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover::before,
.portfolio-item:focus-visible::before,
.portfolio-item:hover::after,
.portfolio-item:focus-visible::after {
  opacity: 1;
}

.portfolio-item:hover::after,
.portfolio-item:focus-visible::after {
  transform: translateY(0);
}

.portfolio-item:focus-visible {
  outline: 3px solid rgba(12, 90, 73, 0.42);
  outline-offset: 2px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.is-lightbox-open {
  overflow: hidden;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  padding: 20px;
  display: grid;
  place-items: center;
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
}

.portfolio-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0a0a0a;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.5);
  padding: 12px;
}

.portfolio-lightbox-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.portfolio-lightbox-btn {
  height: 32px;
  min-width: 70px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.portfolio-lightbox-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.portfolio-lightbox-btn--close {
  background: linear-gradient(180deg, #6a2738, #3f1723);
  border-color: rgba(255, 255, 255, 0.28);
}

.portfolio-lightbox-figure {
  margin: 0;
}

.portfolio-lightbox-figure img {
  width: 100%;
  max-height: min(72vh, 760px);
  border-radius: 10px;
  object-fit: contain;
  background: #030303;
}

.portfolio-lightbox-caption {
  margin: 10px 0 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  text-align: center;
}

.portfolio-item--a {
  grid-column: 1 / span 3;
  grid-row: span 7;
}

.portfolio-item--b {
  grid-column: 4 / span 3;
  grid-row: span 7;
}

.portfolio-item--c {
  grid-column: 7 / span 6;
  grid-row: span 7;
}

.portfolio-item--d {
  grid-column: 1 / span 3;
  grid-row: span 6;
}

.portfolio-item--e {
  grid-column: 4 / span 3;
  grid-row: span 6;
}

.portfolio-item--f {
  grid-column: 7 / span 3;
  grid-row: span 6;
}

.portfolio-item--g {
  grid-column: 10 / span 3;
  grid-row: span 6;
}

.portfolio-item--h {
  grid-column: 1 / span 6;
  grid-row: span 5;
}

.portfolio-item--i {
  grid-column: 7 / span 6;
  grid-row: span 5;
}

/* About page */
.page-about {
  background: #ececec;
}

.about-main {
  padding: 22px 0 30px;
}

.about-intro {
  padding: 12px 0 36px;
}

.about-title {
  margin: 0;
  text-align: center;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.7px;
}

.about-title span {
  text-decoration-line: underline;
  text-decoration-color: #2f9fff;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.about-subtitle {
  margin: 14px auto 0;
  text-align: center;
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: 1.12;
  max-width: 880px;
  letter-spacing: -0.25px;
}

/* Conversation UI */
.contact-conversation {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, var(--surface));
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  max-width: 720px;
}

/* Booking form + summary two-column layout */
.booking-form-with-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
  margin-top: 24px;
}

.booking-summary {
  padding: 20px;
  margin-top: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f6f1ea);
  border: 1px solid rgba(31, 26, 23, 0.1);
  box-shadow: 0 20px 38px rgba(24, 18, 16, 0.16);
  align-self: start;
  position: sticky;
  top: 96px;
  animation: booking-fade-up 520ms ease both;
  animation-delay: 220ms;
}

.booking-summary-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.booking-summary-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(31, 26, 23, 0.08);
}

.summary-line .summary-label {
  color: rgba(31, 26, 23, 0.58);
  font-size: 12.5px;
}

.summary-line .summary-value,
.summary-line .summary-amount {
  font-size: 14px;
  font-weight: 600;
}

.booking-summary-total {
  border-bottom: 0;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(31, 26, 23, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .page-booking .booking-title,
  .page-booking .booking-subtitle,
  .page-booking .upcoming-schedules,
  .page-booking .booking-form-card,
  .page-booking .booking-summary {
    animation: none;
  }
}

@media (max-width: 920px) {
  .booking-form-with-summary {
    grid-template-columns: 1fr;
  }
  .booking-summary {
    order: 2;
    position: static;
    top: auto;
  }
}

/* When booking actions are placed inside the two-column grid, keep them aligned
   to the left/form column so buttons align with the modal/form box. */
.booking-form-with-summary > .booking-actions {
  grid-column: 1;
  margin: 18px 0 0;
  max-width: 100%;
  justify-content: center;
}

/* Custom select + packages inline */
.native-select-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid rgba(31, 26, 23, 0.14);
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(24, 18, 16, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  position: relative;
}

.custom-select-button .label { text-align: left; flex: 1; }
.custom-select-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(31, 26, 23, 0.5);
  border-bottom: 2px solid rgba(31, 26, 23, 0.5);
  transform: rotate(45deg);
  margin-left: 12px;
}

.custom-select.open .custom-select-button {
  border-color: rgba(13, 95, 78, 0.4);
  box-shadow: 0 12px 26px rgba(24, 18, 16, 0.12);
  transform: translateY(-1px);
}

.custom-select-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(31, 26, 23, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(24, 18, 16, 0.12);
  max-height: 320px;
  overflow: auto;
  padding: 10px;
  display: none;
}

.custom-select.open .custom-select-menu { display: block; }

.cs-item { padding: 10px; display: flex; justify-content: space-between; align-items: center; gap: 10px; border-radius: 10px; cursor: pointer; transition: background 150ms ease, transform 150ms ease; }
.cs-item:hover { background: rgba(13, 95, 78, 0.08); transform: translateX(2px); }

.cs-price { font-size: 12px; color: rgba(31, 26, 23, 0.56); }

.cs-packages { margin: 6px 0 10px 12px; display: none; flex-direction: column; gap: 6px; }
.cs-packages.visible { display: flex; }

.cs-package { padding: 8px; border-radius: 6px; background: rgba(0,0,0,0.02); font-size: 13px; display:flex; justify-content: space-between; align-items:center; cursor:pointer; }
.cs-package:hover { background: rgba(0,0,0,0.04); }
.cs-expand { background: transparent; border: none; cursor: pointer; font-size: 14px; padding: 6px; }
.cs-expanded .cs-expand { transform: rotate(90deg); }

@media (max-width: 560px) {
  .custom-select-menu { max-height: 260px; }
}

.contact-conversation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-conversation-header h3 {
  margin: 0;
  font-size: 18px;
}

.contact-conversation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conv-message {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, var(--surface-2));
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  transform: translateY(6px);
  opacity: 0;
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), opacity 220ms ease;
}

.conv-message.is-visible { transform: translateY(0); opacity: 1; }

/* Differentiate side alignment: admin (left), customer (right) */
.conv-message--customer {
  align-self: flex-end;
  border-radius: 12px 12px 6px 12px;
  background: linear-gradient(180deg, #ffffff, var(--surface-2));
  color: rgba(0,0,0,0.86);
}
.conv-message--admin {
  align-self: flex-start;
  border-radius: 12px 12px 12px 6px;
  background: linear-gradient(180deg, var(--brand-wine), var(--brand-wine-2));
  color: white;
  border-color: rgba(0,0,0,0.08);
}

.conv-meta { font-size: 12px; color: var(--muted); display:flex; gap:8px; align-items:center; margin-bottom:6px; }
.conv-meta strong { font-weight:700; color: inherit; }
.conv-time { font-size: 11px; color: rgba(0,0,0,0.44); }
.conv-message--admin .conv-time { color: rgba(255,255,255,0.85); }

/* Left/right alignment for meta text */
.conv-message--customer .conv-meta { justify-content: flex-end; text-align: right; }
.conv-message--admin .conv-meta { justify-content: flex-start; text-align: left; }
.conv-message--admin .conv-meta strong { color: rgba(255,255,255,0.92); }

.conv-body { font-size: 14px; color: rgba(0,0,0,0.86); white-space:pre-wrap; }
.conv-message--admin .conv-body { color: #fff; }

.contact-conversation-actions { margin-top: 14px; display:flex; gap:10px; }

/* Reply bar */
.contact-reply-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.reply-input {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(180deg, #ffffff, var(--surface-2));
  font-size: 14px;
  outline: none;
}

.reply-input:focus {
  box-shadow: 0 8px 20px rgba(12,90,73,0.08);
  border-color: rgba(12,90,73,0.18);
}

.reply-send {
  padding: 10px 16px;
  border-radius: 999px;
  min-width: 96px;
  font-weight: 700;
}

/* show/hide animation for container */
.contact-conversation { opacity: 0; transform: translateY(6px); transition: opacity 260ms ease, transform 260ms cubic-bezier(.2,.9,.2,1); }
.contact-conversation.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 720px) {
  .conv-message { max-width: 92%; }
  .contact-conversation { padding: 14px; }
}

.about-story {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.24fr;
  gap: 24px;
  align-items: center;
}

.about-story-title {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 52px);
}

.about-story-text {
  margin: 14px 0 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.34;
}

.about-story-image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-legacy {
  margin: 34px auto 0;
  max-width: 900px;
  text-align: center;
  color: rgba(0, 0, 0, 0.86);
  font-size: clamp(19px, 2vw, 32px);
  line-height: 1.3;
}

.about-motto {
  margin: 30px 0 0;
  text-align: center;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.6px;
  font-weight: 800;
}

/* Services page */
.page-services {
  background: #ececec;
}

.services-main {
  padding-bottom: 30px;
}

.services-hero {
  padding-top: 8px;
}

.services-hero-banner {
  min-height: 120px;
  display: grid;
  place-items: center;
  background:
    url("../assets/services/services-hero.png") center / cover no-repeat,
    url("../assets/services-banner.svg") center / cover no-repeat;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.16);
}

.services-hero-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4.2vw, 56px);
  letter-spacing: -0.2px;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.services-packages {
  padding: 26px 0 24px;
}

.services-packages-title {
  margin: 0;
  text-align: center;
  font-size: clamp(24px, 2.8vw, 34px);
}

.services-packages-subtitle {
  margin: 10px auto 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.2;
}

.services-packages-extra {
  margin-top: 36px;
}

.services-packages-extra-head {
  text-align: center;
}

.services-packages-extra-title {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
}

.services-packages-extra-subtitle {
  margin: 8px auto 0;
  max-width: 560px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
}

.packages-grid {
  margin-top: 24px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.packages-grid--dynamic {
  margin-top: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: center;
}

.package-card--dynamic {
  max-width: 340px;
  margin: 0 auto;
}

.package-card {
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f2f2f2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-poster {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  min-height: 304px;
  padding: 10px;
  background: #f7f7f7;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
}

.package-poster ul {
  margin: 0;
  padding-left: 15px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 10px;
  line-height: 1.35;
}

.package-mini-title {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.package-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.package-pill {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(180deg, #0f433a, #0b322b);
}

.package-price {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(180deg, #5b2231, #3b1520);
}

.poster-split {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
  align-items: start;
}

.poster-avatar {
  width: 92px;
  height: 124px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, #b68390, #33435b);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.poster-avatar--small {
  height: 108px;
}

.poster-note {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 10px;
  line-height: 1.32;
}

.poster-center-logo {
  min-height: 124px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #406a66, #1b3143);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.poster-list-full {
  margin: 0;
  padding-left: 15px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 10px;
  line-height: 1.35;
}

.poster-gallery {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.poster-gallery div {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  background:
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #d4d4d4, #989898);
}

.poster-gallery--wide {
  grid-template-columns: repeat(2, 1fr);
}

.package-price-grid {
  display: grid;
  gap: 6px;
}

.package-price-grid p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 10px;
}

.package-price-grid span {
  color: rgba(0, 0, 0, 0.74);
}

.package-price-grid strong {
  color: rgba(0, 0, 0, 0.9);
  font-size: 11px;
}

.btn--package {
  align-self: center;
  height: 32px;
  min-width: 118px;
  padding: 0 12px;
  color: #ffffff;
  font-size: 10px;
  background: linear-gradient(90deg, #5a2032 0%, #0d5f4e 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.package-poster--emerald {
  background: linear-gradient(170deg, #f8f8f8, #edf7f1);
}

.package-poster--teal {
  background: linear-gradient(170deg, #f7faf9, #e7f2f1);
}

.package-poster--rose {
  background: linear-gradient(170deg, #fbf8f9, #f7edf1);
}

.package-poster--slate {
  background: linear-gradient(170deg, #f9f9f9, #f1f1f1);
}

.package-poster--dark {
  background: linear-gradient(170deg, #313131, #1a1a1a);
  color: #f3f3f3;
}

.package-poster--dark ul,
.package-poster--dark .poster-list-full,
.package-poster--dark .poster-note {
  color: rgba(255, 255, 255, 0.83);
}

.package-poster--gold {
  background: linear-gradient(170deg, #fffdf7, #f4eee0);
}

.package-poster--plum {
  background: linear-gradient(170deg, #fbf7fc, #efe7f4);
}

.package-poster--mint {
  background: linear-gradient(170deg, #f7fdf9, #eaf8ef);
}

.package-poster--ivory {
  background: linear-gradient(170deg, #ffffff, #f4f4f1);
}

.package-poster--olive {
  background: linear-gradient(170deg, #f9faf6, #eef3e6);
}

.package-poster--cyan {
  background: linear-gradient(170deg, #f5fbfc, #e5f1f4);
}

.package-poster--scarlet {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.58)),
    url("../assets/services/event-coverage.png") center bottom / cover no-repeat,
    url("../assets/portfolio/event-coverage.png") center bottom / cover no-repeat,
    linear-gradient(170deg, #fdf7f7, #f6ebeb);
}

/* Services image slots: upload files into FRONTEND/assets/services using these names */
.package-poster--emerald .poster-avatar {
  background:
    url("../assets/services/package-a.png") center / cover no-repeat,
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, #b68390, #33435b);
}

.package-poster--teal .poster-center-logo {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45)),
    url("../assets/services/package-b.png") center / cover no-repeat,
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #406a66, #1b3143);
}

.package-poster--rose .poster-avatar {
  background:
    url("../assets/services/package-c.png") center / cover no-repeat,
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, #b68390, #33435b);
}

.package-poster--slate .poster-avatar {
  background:
    url("../assets/services/package-d.png") center / cover no-repeat,
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, #b68390, #33435b);
}

.package-poster--gold .poster-gallery div:nth-child(1) {
  background:
    url("../assets/services/package-gold-1.png") center / cover no-repeat,
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #d4d4d4, #989898);
}

.package-poster--gold .poster-gallery div:nth-child(2) {
  background:
    url("../assets/services/package-gold-2.png") center / cover no-repeat,
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #d4d4d4, #989898);
}

.package-poster--gold .poster-gallery div:nth-child(3) {
  background:
    url("../assets/services/package-gold-3.png") center / cover no-repeat,
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #d4d4d4, #989898);
}

.package-poster--plum .poster-avatar {
  background:
    url("../assets/services/package-1.png") center / cover no-repeat,
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, #b68390, #33435b);
}

.package-poster--mint .poster-avatar {
  background:
    url("../assets/services/package-2.png") center / cover no-repeat,
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, #b68390, #33435b);
}

.package-poster--olive .poster-gallery div:nth-child(1) {
  background:
    url("../assets/services/booth-1a.png") center / cover no-repeat,
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #d4d4d4, #989898);
}

.package-poster--olive .poster-gallery div:nth-child(2) {
  background:
    url("../assets/services/booth-1b.png") center / cover no-repeat,
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #d4d4d4, #989898);
}

.package-poster--cyan .poster-gallery div:nth-child(1) {
  background:
    url("../assets/services/booth-2a.png") center / cover no-repeat,
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #d4d4d4, #989898);
}

.package-poster--cyan .poster-gallery div:nth-child(2) {
  background:
    url("../assets/services/booth-2b.png") center / cover no-repeat,
    radial-gradient(circle at 60% 26%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #d4d4d4, #989898);
}

/* Services poster format */
.package-card--modern {
  padding: 10px;
  gap: 12px;
  background: linear-gradient(180deg, #f6f6f6, #efefef);
}

.package-card--modern .btn--package {
  height: 52px;
  min-width: 208px;
  padding: 0 20px;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.service-poster {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: linear-gradient(170deg, #f8f8f8, #ececec);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.06);
  padding: 12px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-poster--compact {
  min-height: 320px;
}

.package-card--dynamic .service-photo-frame {
  max-height: 240px;
}

.package-card--dynamic .service-photo-frame img {
  height: 100%;
  object-fit: cover;
}

.service-poster--simple {
  justify-content: flex-start;
}

.service-poster-title {
  margin: 0;
  text-align: center;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 14px;
  line-height: 1.18;
  letter-spacing: 0.2px;
}

.service-poster-subtitle {
  margin: -2px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.service-rate-bar {
  margin: 2px 0 0;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(90deg, #065d4d 0%, #7a1f47 100%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-rate-bar--dual {
  margin-top: 0;
}

.service-rate-bar span,
.service-rate-bar strong {
  font-size: 15px;
}

.service-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 10px;
  align-items: start;
}

.service-two-col--equal {
  grid-template-columns: 1fr 1fr;
}

.service-photo-frame {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0d1220;
  border: 2px solid rgba(0, 0, 0, 0.22);
}

.service-photo-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@keyframes service-image-shimmer {
  0% {
    background-position: -220% 0;
  }
  100% {
    background-position: 220% 0;
  }
}

.services-main img.is-loading {
  background: linear-gradient(90deg, rgba(226, 224, 221, 0.9) 0%, rgba(245, 243, 241, 0.9) 40%, rgba(226, 224, 221, 0.9) 80%);
  background-size: 240% 100%;
  animation: service-image-shimmer 1.1s ease-in-out infinite;
}

.services-main img.is-loaded {
  background: none;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .services-main img.is-loading {
    animation: none;
  }
}

.service-photo-placeholder {
  width: 100%;
  min-height: 200px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #dcdcdc, #f0f0f0);
}

.service-photo-frame--book {
  max-width: 320px;
  margin-inline: auto;
  border-radius: 16px;
  background: #131313;
}

.service-photo-frame--book img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 8px;
}

.service-photo-frame--campaign img,
.service-photo-frame--booth img,
.service-photo-frame--wide img {
  aspect-ratio: 1 / 1;
}

.service-photo-tag {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  margin: 0;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  background: linear-gradient(90deg, #065d4d 0%, #7a1f47 100%);
}

.service-badge {
  position: absolute;
  right: -14px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(90deg, #065d4d 0%, #7a1f47 100%);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.service-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail-stack--spacious {
  gap: 12px;
}

.service-section-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-chip {
  margin: 0;
  min-height: 34px;
  width: fit-content;
  max-width: 100%;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(90deg, #065d4d 0%, #7a1f47 100%);
}

.service-chip--center {
  margin: -8px auto 8px;
}

.service-list {
  margin: 0;
  padding-left: 16px;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  line-height: 1.28;
}

.service-list li {
  margin: 2px 0;
}

.service-list--plain {
  list-style: none;
  padding-left: 0;
}

.service-list--caps {
  font-size: 11px;
  line-height: 1.25;
}

.service-note {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 11px;
  line-height: 1.25;
}

.service-note--light {
  color: rgba(255, 255, 255, 0.95);
}

.service-note-box {
  margin: 0 auto;
  width: min(240px, 100%);
  border-radius: 18px;
  padding: 12px 14px;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-price-panel {
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(90deg, #065d4d 0%, #7a1f47 100%);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.18);
}

.service-price-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.service-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.24;
}

.service-price-list li + li {
  margin-top: 2px;
}

.service-price-list span {
  flex: 1;
}

.service-price-list strong {
  font-weight: 700;
  text-align: right;
}

.service-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.service-thumb-row img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-copy-block {
  padding: 8px 6px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.service-copy-block p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
}

.service-outro {
  margin: 4px 0 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.28;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-mini-card {
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-mini-rate {
  margin: 0 0 8px;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, #065d4d 0%, #7a1f47 100%);
}

.service-mini-title {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.service-mini-copy {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.26;
}

@media (max-width: 980px) {
  .package-card--modern .btn--package {
    height: 46px;
    min-width: 188px;
    font-size: 12px;
  }

  .service-rate-bar span,
  .service-rate-bar strong {
    font-size: 14px;
  }

  .service-list,
  .service-mini-copy,
  .service-copy-block p {
    font-size: 13px;
  }

  .service-chip,
  .service-mini-title {
    font-size: 12px;
  }

  .service-price-list li {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .service-poster {
    min-height: auto;
  }

  .service-two-col,
  .service-two-col--equal {
    grid-template-columns: 1fr;
  }

  .service-mini-grid {
    grid-template-columns: 1fr;
  }

  .service-badge {
    right: 10px;
    bottom: 10px;
  }

  .service-thumb-row {
    grid-template-columns: 1fr;
  }

  .package-card--modern .btn--package {
    width: 100%;
    min-width: 0;
    height: 44px;
    font-size: 12px;
  }
}

/* Contact page */
.page-contact {
  background: #ececec;
}

.contact-main {
  padding: 16px 0 34px;
}

.contact-hero {
  padding-top: 10px;
}

.contact-title {
  margin: 0;
  text-align: center;
  font-size: clamp(44px, 5vw, 66px);
  letter-spacing: -0.6px;
  line-height: 1.04;
}

.contact-subtitle {
  margin: 12px auto 0;
  max-width: 960px;
  text-align: center;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.2px;
}

.contact-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.82fr 1.58fr;
  gap: 22px;
  align-items: start;
}

.contact-info-title {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.08;
}

.contact-info-copy {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.35;
  max-width: 280px;
}

.contact-info-cards {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  max-width: 250px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f2f2f2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  padding: 10px 12px;
}

.contact-info-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: linear-gradient(180deg, #ffffff, #ececec);
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, 0.82);
}

.contact-info-card strong {
  display: block;
  font-size: 12px;
  line-height: 1.1;
}

.contact-info-card small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.74);
}

.contact-social-block {
  margin-top: 16px;
}

.contact-social-label {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.72);
}

.contact-social-icons {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}

.contact-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  display: grid;
  place-items: center;
  color: #1a1a1a;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
}

.contact-form-card::before,
.contact-form-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-form-card::before {
  left: -20%;
  right: -20%;
  bottom: -18%;
  height: 140px;
  background:
    radial-gradient(100% 70% at 20% 100%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0) 70%),
    radial-gradient(100% 70% at 50% 100%, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0) 70%),
    radial-gradient(100% 70% at 80% 100%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0) 70%);
}

.contact-form-card::after {
  left: 0;
  right: 0;
  bottom: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0));
}

.contact-form-title {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.08;
}

.contact-form-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.contact-form-left {
  display: grid;
  gap: 8px;
}

.contact-field {
  display: grid;
  gap: 5px;
}

.contact-field span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.82);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #f4f4f4, #e4e4e4);
  color: #121212;
  padding: 8px 10px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
}

.contact-field input {
  height: 34px;
}

.contact-field textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(11, 95, 78, 0.55);
  box-shadow: 0 0 0 4px rgba(11, 95, 78, 0.14);
}

.btn--send {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 2px;
  min-width: 170px;
  height: 36px;
  padding: 0 18px;
  color: #ffffff;
  gap: 8px;
  background: linear-gradient(90deg, #5a2032 0%, #0d5f4e 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-location {
  margin-top: 16px;
}

.contact-location-card {
  margin: 0 auto;
  max-width: 760px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #ffffff, #f1f1f1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-location-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(180deg, #ffffff, #ececec);
  display: grid;
  place-items: center;
}

.contact-location-card strong {
  display: block;
  font-size: 12px;
  line-height: 1.1;
}

.contact-location-card p {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.76);
}

.contact-map-frame {
  margin: 16px auto 0;
  max-width: 980px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.contact-map-frame img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* Booking page */
@keyframes booking-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-booking {
  font-family: var(--font-body);
  color: var(--booking-ink);
  background:
    radial-gradient(circle at 6% 4%, rgba(250, 227, 191, 0.6), rgba(250, 227, 191, 0) 38%),
    radial-gradient(circle at 88% 6%, rgba(13, 95, 78, 0.22), rgba(13, 95, 78, 0) 42%),
    radial-gradient(circle at 70% 100%, rgba(139, 33, 79, 0.18), rgba(139, 33, 79, 0) 46%),
    linear-gradient(180deg, #f8f3ee 0%, #eee7df 100%);
  min-height: 100vh;
}

.booking-main {
  padding: 32px 0 64px;
}

.booking-hero {
  position: relative;
  padding-top: 6px;
}

.booking-hero::before {
  content: "";
  position: absolute;
  inset: -18px 0 auto 0;
  height: 220px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 52%),
    linear-gradient(120deg, rgba(13, 95, 78, 0.12), rgba(139, 33, 79, 0.12));
  z-index: -1;
}

.booking-wrap {
  max-width: 1040px;
}

.booking-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(44px, 4.8vw, 64px);
  letter-spacing: -0.8px;
  line-height: 1.02;
  color: var(--booking-ink);
  animation: booking-fade-up 520ms ease both;
}

.booking-subtitle {
  margin: 14px auto 0;
  text-align: center;
  max-width: 760px;
  color: rgba(31, 26, 23, 0.68);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.4;
  animation: booking-fade-up 520ms ease both;
  animation-delay: 80ms;
}

.upcoming-schedules {
  margin: 22px auto 0;
  max-width: 820px;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(13, 95, 78, 0.14), rgba(13, 95, 78, 0) 48%),
    linear-gradient(180deg, #ffffff, #f4efe7);
  box-shadow: 0 20px 38px rgba(24, 18, 16, 0.16);
  padding: 18px;
  animation: booking-fade-up 520ms ease both;
  animation-delay: 140ms;
}

.upcoming-schedules-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.upcoming-schedules-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.2px;
}

.upcoming-schedules-note {
  margin: 8px 0 0;
  max-width: 540px;
  font-size: 12.5px;
  color: rgba(31, 26, 23, 0.65);
}

.upcoming-schedules-stats {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 24px;
}

.upcoming-stat-chip {
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: rgba(31, 26, 23, 0.82);
}

.upcoming-schedules-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-height: min(46vh, 380px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(12, 90, 73, 0.85) rgba(0, 0, 0, 0.08);
}

.upcoming-schedules-list::-webkit-scrollbar {
  width: 9px;
}

.upcoming-schedules-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.upcoming-schedules-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, #0d5f4e, #7f1f45);
}

.upcoming-schedule-item,
.upcoming-schedules-empty,
.upcoming-schedules-list .loading {
  border-radius: 14px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
}

.upcoming-schedule-item {
  display: grid;
  gap: 8px;
  border-left: 3px solid rgba(13, 95, 78, 0.4);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.upcoming-schedule-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(24, 18, 16, 0.12);
  border-left-color: rgba(139, 33, 79, 0.6);
}

.upcoming-schedule-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.upcoming-schedule-service {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--booking-ink);
}

.upcoming-schedule-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: rgba(31, 26, 23, 0.66);
  font-size: 12px;
}

.upcoming-schedule-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(245, 241, 235, 0.9);
  border: 1px solid rgba(31, 26, 23, 0.08);
}

.upcoming-status-badge {
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22px;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.upcoming-status-badge.is-pending {
  color: #7a5400;
  background: rgba(241, 197, 85, 0.24);
  border-color: rgba(187, 126, 0, 0.25);
}

.upcoming-status-badge.is-confirmed,
.upcoming-status-badge.is-in-progress {
  color: #0f4e68;
  background: rgba(84, 176, 205, 0.24);
  border-color: rgba(13, 114, 145, 0.24);
}

.upcoming-status-badge.is-paid,
.upcoming-status-badge.is-completed {
  color: #0a5e3f;
  background: rgba(89, 190, 130, 0.24);
  border-color: rgba(20, 126, 78, 0.24);
}

.upcoming-status-badge.is-cancelled,
.upcoming-status-badge.is-rejected {
  color: #7c1c36;
  background: rgba(214, 91, 126, 0.24);
  border-color: rgba(160, 30, 72, 0.22);
}

.upcoming-schedules-empty,
.upcoming-schedules-list .loading {
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  font-size: 12px;
}

.upcoming-schedules-toggle {
  margin-top: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.18);
  background: linear-gradient(90deg, rgba(13, 95, 78, 0.96), rgba(139, 33, 79, 0.96));
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.upcoming-schedules-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.upcoming-schedules-cancel {
  margin-top: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: linear-gradient(90deg, #c94c5a, #8b214f);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
}

.upcoming-schedule-item.is-selected {
  outline: 3px solid rgba(12,90,73,0.12);
  box-shadow: 0 12px 24px rgba(24, 18, 16, 0.12);
  border-left-color: rgba(13, 95, 78, 0.8);
}

/* Modal used for booking cancellation confirmation */
.pxm-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 160ms ease;
}
.pxm-modal:not([hidden]) {
  opacity: 1;
}
.pxm-modal[hidden] { display: none; }
.pxm-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}
.pxm-modal-dialog {
  position: relative;
  background: #fff;
  padding: 20px 22px;
  max-width: 640px;
  width: min(92%, 640px);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(11,36,29,0.18);
  z-index: 2;
  pointer-events: auto;
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.pxm-modal:not([hidden]) .pxm-modal-dialog {
  transform: translateY(0) scale(1);
}
.pxm-modal-header { display:flex; align-items:center; justify-content:space-between; gap:12px; border-bottom:1px solid rgba(0,0,0,0.04); padding-bottom:10px; }
.pxm-modal-header h3 { margin:0; font-size:20px; line-height:1; color:var(--ink-dark); }
.pxm-modal-close { background:transparent; border:0; font-size:20px; line-height:1; cursor:pointer; color:rgba(0,0,0,0.6); padding:6px; border-radius:8px; }
.pxm-modal-close:hover { background: rgba(0,0,0,0.03); color:rgba(0,0,0,0.85); }
.pxm-modal-body { margin-top: 12px; color: #333; font-size:15px; }
.pxm-modal-details { display:grid; grid-template-columns: 1fr 1fr; gap:8px 20px; margin-top: 14px; }
.pxm-modal-details p { margin: 0; font-size: 14px; color: #444; }
.pxm-modal-actions { display:flex; gap:12px; justify-content:flex-end; margin-top:18px; }
.pxm-modal-actions .btn { padding:10px 14px; border-radius:10px; font-size:14px; }
.pxm-modal-actions .btn--service { min-width:150px; }
.pxm-modal-actions .btn--secondary {
  min-width:120px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  color: var(--ink-dark, #333);
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  padding:10px 16px;
}

.pxm-modal--otp .pxm-modal-overlay {
  background: rgba(8, 12, 14, 0.55);
  backdrop-filter: blur(6px);
}

.pxm-modal--otp .pxm-modal-dialog {
  max-width: 520px;
  border-radius: 18px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #ffffff, #f4f3f2);
  box-shadow: 0 28px 60px rgba(8, 12, 14, 0.24);
}

.otp-modal-header {
  align-items: flex-start;
  gap: 16px;
}

.otp-modal-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.otp-modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d5f4e 0%, #8e0d43 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(12, 90, 73, 0.24);
}

.otp-modal-sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
  .pxm-modal,
  .pxm-modal-dialog {
    transition: none;
  }
}

/* Lock background scroll while modal open */
body.is-modal-open { overflow: hidden; }

.booking-form-card {
  margin: 18px auto 0;
  max-width: 760px;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: linear-gradient(180deg, #ffffff, #f4efe8);
  box-shadow: 0 22px 44px rgba(24, 18, 16, 0.16);
  padding: 22px;
  position: relative;
  overflow: hidden;
  animation: booking-fade-up 520ms ease both;
  animation-delay: 180ms;
}

.booking-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--booking-accent), var(--booking-accent-2));
  opacity: 0.85;
}

.booking-grid {
  display: grid;
  gap: 14px;
}

.booking-grid--two {
  grid-template-columns: 1fr 1fr;
}

.booking-field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.booking-field > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(31, 26, 23, 0.72);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 23, 0.18);
  background: #ffffff;
  color: var(--booking-ink);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.booking-field input,
.booking-field select {
  height: 42px;
  padding: 0 12px;
}

.booking-field textarea {
  min-height: 110px;
  padding: 12px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: rgba(13, 95, 78, 0.55);
  box-shadow: 0 0 0 4px rgba(13, 95, 78, 0.14);
  transform: translateY(-1px);
}

.booking-field:focus-within > span {
  color: rgba(13, 95, 78, 0.86);
}

.booking-field input[readonly] {
  background: linear-gradient(180deg, #f4f2ef, #ebe4dd);
  color: rgba(31, 26, 23, 0.6);
  cursor: not-allowed;
}

.booking-field input[readonly]:focus {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: none;
}

.booking-input-icon {
  display: flex;
  align-items: center;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 23, 0.18);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.booking-input-icon:focus-within {
  border-color: rgba(13, 95, 78, 0.55);
  box-shadow: 0 0 0 4px rgba(13, 95, 78, 0.14);
}

.booking-input-icon svg {
  flex: 0 0 auto;
  margin-left: 10px;
  color: rgba(31, 26, 23, 0.66);
}

.booking-input-icon input {
  border: 0;
  background: transparent;
  height: 100%;
  width: 100%;
  padding: 0 10px 0 8px;
}

.booking-section-title {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.8px;
  color: rgba(139, 33, 79, 0.9);
}

.booking-payment-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px 14px;
  align-items: center;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 26, 23, 0.14);
}

/* Ensure payment preview (GCash image) appears in the options column */
.booking-payment-preview {
  grid-column: 2 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.booking-payment-preview img {
  height: 72px;
  width: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.booking-payment-preview img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.payment-image-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  cursor: zoom-out;
}

.payment-image-overlay-inner {
  padding: 10px;
  border-radius: 8px;
}

.payment-image-overlay img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
  display: block;
  cursor: auto;
}

.booking-payment-label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(31, 26, 23, 0.7);
}

.booking-pill-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-pill-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
}

.booking-pill-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}

.booking-pill-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.2);
  background: #ffffff;
  color: rgba(31, 26, 23, 0.76);
  box-shadow: 0 8px 16px rgba(24, 18, 16, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.booking-pill-option input:checked + span {
  background: linear-gradient(90deg, var(--booking-accent), var(--booking-accent-2));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(12, 90, 73, 0.28);
  transform: translateY(-1px);
}

.booking-upload {
  position: relative;
  width: 82px;
  height: 60px;
  border-radius: 12px;
  border: 1px dashed rgba(31, 26, 23, 0.32);
  background: #ffffff;
  display: grid;
  place-items: center;
  color: rgba(31, 26, 23, 0.7);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.booking-upload:hover {
  border-color: rgba(13, 95, 78, 0.6);
  box-shadow: 0 10px 22px rgba(24, 18, 16, 0.12);
  transform: translateY(-1px);
}

.booking-upload span {
  font-size: 24px;
  line-height: 1;
}

.booking-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.booking-upload-file {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(31, 26, 23, 0.66);
}

.booking-upload-file.is-selected {
  color: rgba(11, 95, 78, 0.92);
  font-weight: 700;
}

.booking-actions {
  margin: 18px auto 0;
  max-width: 760px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-actions-inner {
  display: flex;
  gap: 12px;
  align-items: center;
}

.booking-auth-message {
  margin: 10px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.btn--booking-confirm,
.btn--booking-cancel {
  min-width: 250px;
  height: 44px;
  font-size: 13px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn--booking-confirm {
  color: #ffffff;
  background: linear-gradient(90deg, var(--booking-accent) 0%, var(--booking-accent-2) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(12, 90, 73, 0.24);
}

.btn--booking-cancel {
  color: #ffffff;
  background: #1f1a17;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 24px rgba(31, 26, 23, 0.2);
}

.btn--booking-confirm:hover,
.btn--booking-cancel:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn--booking-confirm:disabled,
.btn--booking-cancel:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.booking-status {
  margin: 12px auto 0;
  max-width: 760px;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 12px 14px;
  font-size: 13px;
  display: none;
}

.booking-status.is-visible {
  display: block;
}

.booking-status--info {
  color: #173f37;
  background: rgba(11, 95, 78, 0.14);
  border-color: rgba(11, 95, 78, 0.3);
}

.booking-status--success {
  color: #0f4c3e;
  background: rgba(26, 130, 96, 0.16);
  border-color: rgba(26, 130, 96, 0.34);
}

.booking-status--error {
  color: #631735;
  background: rgba(148, 23, 72, 0.16);
  border-color: rgba(148, 23, 72, 0.34);
}

/* Auth pages */
.page-auth {
  margin: 0;
  min-height: 100vh;
  background: #f1f1f1;
}

.auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
}

.page-auth--create .auth-layout {
  grid-template-columns: 1.3fr 1fr;
}

.auth-panel {
  min-height: 100vh;
}

.auth-panel--promo {
  background:
    radial-gradient(circle at 18% 16%, rgba(11, 95, 78, 0.86), rgba(11, 95, 78, 0) 45%),
    radial-gradient(circle at 80% 24%, rgba(76, 33, 52, 0.75), rgba(76, 33, 52, 0) 45%),
    linear-gradient(145deg, #112429, #8e0d43);
  color: #ffffff;
  display: grid;
  place-items: center;
}

.auth-promo-content {
  width: min(420px, calc(100% - 48px));
  text-align: center;
}

.auth-camera {
  width: 150px;
  margin: 0 auto 14px;
}

.auth-promo-title {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.5px;
}

.auth-promo-sub {
  margin: 10px 0 0;
  font-size: clamp(16px, 1.8vw, 28px);
}

.auth-panel--form {
  background: #efefef;
  padding: 20px;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-top: 2px;
}

.auth-form {
  width: min(560px, calc(100% - 24px));
  margin: 38px auto 0;
  display: grid;
  gap: 12px;
}

.auth-form-title {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(44px, 4.8vw, 62px);
  letter-spacing: -0.5px;
}

.auth-field {
  display: grid;
  gap: 6px;
}

.auth-password {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-field input,
.auth-field select {
  width: 100%;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: #d0d0d0;
  padding: 0 20px;
  font-family: inherit;
  font-size: 16px;
  color: #111111;
  outline: none;
}

.auth-password input {
  padding-right: 52px;
}

.auth-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: #2a2a2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.auth-password-toggle:hover {
  background: rgba(255, 255, 255, 0.9);
}

.auth-field input:focus,
.auth-field select:focus {
  border-color: rgba(11, 95, 78, 0.7);
  box-shadow: 0 0 0 4px rgba(11, 95, 78, 0.14);
}

.auth-link {
  justify-self: center;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.82);
  text-decoration: none;
  margin-top: 2px;
}

.auth-btn {
  min-width: 162px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.auth-btn--gradient {
  width: 100%;
  color: #ffffff;
  background: linear-gradient(90deg, #8e0d43 0%, #0d5f4e 100%);
}

.auth-btn--ghost {
  width: 100%;
  background: transparent;
  color: #0f0f0f;
}

.auth-btn--dark {
  margin-top: 14px;
  background: #000000;
  color: #ffffff;
}

.auth-field--labeled span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
}

.auth-check {
  margin-top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.78);
}

.auth-check input {
  margin-top: 3px;
}

.auth-check a {
  color: #8e0d43;
  text-decoration: underline;
}

.auth-status {
  min-height: 20px;
  margin: 4px 4px 0;
  font-size: 14px;
  text-align: center;
  visibility: hidden;
}

.auth-otp {
  display: grid;
  gap: 14px;
  padding: 8px 4px 0;
  text-align: center;
}

.auth-otp-note {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.72);
}

.auth-otp-email {
  display: inline-block;
  font-weight: 700;
  color: #0b5f4e;
}

.auth-otp-hint {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.58);
}

.auth-otp-timer {
  margin: 0;
  min-height: 16px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.58);
}

.auth-otp-footnote {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

.auth-otp-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.auth-otp-actions .auth-btn {
  width: auto;
  min-width: 140px;
}

.auth-otp-actions .auth-btn--ghost {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.82);
}

.pxm-modal--otp .auth-status {
  margin: 0;
  text-align: center;
}

.pxm-modal--otp .otp-grid {
  gap: 12px;
}

.pxm-modal--otp .otp-grid input {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fafafa;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.pxm-modal--otp .otp-grid input:focus {
  border-color: rgba(11, 95, 78, 0.55);
  box-shadow: 0 0 0 4px rgba(11, 95, 78, 0.18);
}

/* Mobile responsive: booking & general */
@media (max-width: 900px) {
  .booking-grid.booking-grid--two {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .booking-payment-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .booking-pill-options {
    gap: 8px;
  }
  .booking-pill-option span {
    min-height: 38px;
    padding: 0 12px;
  }
  .booking-payment-preview img {
    height: 96px;
  }
  .booking-actions {
    gap: 10px;
    justify-content: stretch;
  }
  .btn--booking-confirm,
  .btn--booking-cancel {
    min-width: 0;
    width: 100%;
  }
  .booking-upload {
    width: 72px;
    height: 64px;
  }
  .booking-upload span { font-size: 22px; }
  .booking-form-card { padding: 18px; }
  .custom-select-button { height: 42px; }
}

@media (max-width: 480px) {
  .booking-payment-preview img {
    height: 120px;
  }
  .booking-pill-option span {
    font-size: 12.5px;
    min-height: 38px;
  }
  .booking-actions {
    flex-direction: column;
    gap: 8px;
  }
  .container { padding-left: 12px; padding-right: 12px; }
  .booking-grid.booking-grid--two { gap: 10px; }
  .booking-form-card { padding: 16px; }
  .auth-form { width: calc(100% - 32px); margin: 18px auto; }
  .year { font-size: 14px; }
}

.auth-status.is-visible {
  visibility: visible;
}

.auth-status--info {
  color: rgba(0, 0, 0, 0.72);
}

.auth-status--success {
  color: #0b5f4e;
}

.auth-status--error {
  color: #8e0d43;
}

.auth-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Forgot and recovery pages */
.page-recovery {
  margin: 0;
  min-height: 100vh;
  background: #f1f1f1;
}

.recovery-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
}

.recovery-left {
  background:
    radial-gradient(circle at 18% 16%, rgba(11, 95, 78, 0.86), rgba(11, 95, 78, 0) 45%),
    radial-gradient(circle at 80% 24%, rgba(76, 33, 52, 0.75), rgba(76, 33, 52, 0) 45%),
    linear-gradient(145deg, #112429, #8e0d43);
  color: #ffffff;
  display: grid;
  place-items: center;
}

.recovery-left-content {
  width: min(430px, calc(100% - 48px));
  text-align: center;
}

.recovery-left-title {
  margin: 10px 0 0;
  font-size: clamp(44px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.4px;
}

.recovery-back {
  margin-top: 16px;
}

.recovery-right {
  background: #efefef;
  padding: 20px;
}

.recovery-card {
  width: min(500px, calc(100% - 32px));
  margin: 54px auto 0;
  border-radius: 14px;
  padding: 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 84%, rgba(11, 95, 78, 0.86), rgba(11, 95, 78, 0) 44%),
    radial-gradient(circle at 82% 24%, rgba(167, 16, 74, 0.9), rgba(167, 16, 74, 0) 48%),
    linear-gradient(145deg, #25383e, #8e0d43);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.recovery-card--center {
  text-align: center;
}

.recovery-card-title {
  margin: 0;
  font-size: clamp(36px, 3.7vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.3px;
}

.recovery-card-copy {
  margin: 12px 0 0;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

.recovery-card-copy--small {
  font-size: clamp(13px, 1.2vw, 16px);
}

.recovery-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.recovery-field {
  display: grid;
  gap: 7px;
}

.recovery-field span {
  font-size: 17px;
  font-weight: 700;
}

.recovery-field input {
  width: 100%;
  height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: #ffffff;
  color: #1a1a1a;
  font-size: 16px;
  padding: 0 14px;
  font-family: inherit;
  outline: none;
}

.recovery-field input:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.recovery-submit {
  width: 100%;
  min-width: 0;
  margin-top: 6px;
}

.recovery-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.recovery-status {
  min-height: 20px;
  margin: -2px 2px 2px;
  font-size: 13px;
  text-align: center;
  visibility: hidden;
}

.recovery-status.is-visible {
  visibility: visible;
}

.recovery-status--info {
  color: rgba(255, 255, 255, 0.82);
}

.recovery-status--success {
  color: #9dffd6;
}

.recovery-status--error {
  color: #ffb7d0;
}

.otp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.otp-grid input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #ffffff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #151515;
  outline: none;
}

.otp-grid input:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.recovery-resend {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.recovery-resend a {
  color: #ff9ac3;
  text-decoration: underline;
}

.recovery-card--success {
  display: grid;
  justify-items: center;
  gap: 2px;
}

.recovery-success-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
}

/* Footer */
.site-footer {
  margin-top: 18px;
  background: linear-gradient(180deg, #2a2a2a, #111111);
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 22px;
  align-items: start;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-tagline {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-title {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.footer-link {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin: 6px 0;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.footer-text {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.social {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
  padding: 14px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .cards--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-image {
    order: -1;
  }

  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-info-copy,
  .contact-info-cards {
    max-width: none;
  }

  .contact-map-frame {
    max-width: 100%;
  }

  .booking-grid--two,
  .booking-payment-grid {
    grid-template-columns: 1fr;
  }

  .upcoming-schedules-head {
    flex-direction: column;
  }

  .upcoming-schedules-stats {
    justify-content: flex-start;
  }

  .auth-layout,
  .page-auth--create .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-panel {
    min-height: auto;
  }

  .auth-panel--promo {
    min-height: 380px;
    padding: 24px 0;
  }

  .auth-panel--form {
    min-height: auto;
    padding-bottom: 28px;
  }

  .page-auth--create .auth-panel--form {
    order: 1;
  }

  .page-auth--create .auth-panel--promo {
    order: 2;
  }

  .recovery-layout {
    grid-template-columns: 1fr;
  }

  .recovery-left {
    min-height: 360px;
    padding: 24px 0;
  }

  .recovery-right {
    min-height: auto;
    padding-bottom: 28px;
  }
}

@media (max-width: 760px) {
  .tabs {
    display: flex;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .cards--three {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .portfolio-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .portfolio-item::before,
  .portfolio-item::after {
    opacity: 1;
  }

  .portfolio-item::after {
    font-size: 10px;
  }

  .portfolio-lightbox {
    padding: 12px;
  }

  .portfolio-lightbox-dialog {
    padding: 10px;
  }

  .portfolio-lightbox-controls {
    justify-content: center;
    flex-wrap: wrap;
  }

  .portfolio-lightbox-btn {
    min-width: 92px;
  }

  .portfolio-lightbox-caption {
    font-size: 11px;
  }

  .about-main {
    padding-top: 8px;
  }

  .about-subtitle {
    max-width: 520px;
  }

  .about-story {
    margin-top: 24px;
    gap: 16px;
  }

  .about-story-text {
    line-height: 1.44;
  }

  .services-hero-banner {
    min-height: 102px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-poster {
    min-height: 286px;
  }

  .contact-subtitle {
    max-width: 520px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-field textarea {
    min-height: 124px;
  }

  .btn--send {
    width: 100%;
  }

  .contact-location-card {
    max-width: 100%;
  }

  .contact-map-frame img {
    aspect-ratio: 16 / 9;
  }

  .upcoming-schedules {
    padding: 12px;
  }

  .upcoming-schedules-title {
    font-size: 24px;
  }

  .upcoming-schedules-list {
    max-height: min(42vh, 320px);
  }

  .upcoming-schedule-top {
    align-items: flex-start;
  }

  .upcoming-status-badge {
    font-size: 10px;
  }

  .booking-form-card {
    padding: 12px;
  }

  .booking-actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .btn--booking-confirm,
  .btn--booking-cancel {
    min-width: 0;
    width: 100%;
  }

  .auth-form {
    margin-top: 22px;
    width: min(560px, calc(100% - 12px));
  }

  .auth-field input,
  .auth-field select,
  .auth-btn {
    height: 46px;
  }

  .auth-check {
    font-size: 13px;
  }

  .recovery-left {
    min-height: 300px;
  }

  .recovery-card {
    width: min(500px, calc(100% - 8px));
    margin-top: 24px;
    padding: 18px;
  }

  .recovery-field input {
    height: 46px;
    font-size: 15px;
  }

  .otp-grid {
    gap: 8px;
  }

  .otp-grid input {
    height: 48px;
    font-size: 21px;
  }

  .pxm-modal--otp .pxm-modal-dialog {
    padding: 20px 18px;
  }

  .pxm-modal--otp .otp-modal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pxm-modal--otp .auth-otp-actions {
    width: 100%;
    flex-direction: column;
  }

  .pxm-modal--otp .auth-otp-actions .auth-btn {
    width: 100%;
  }
}

/* Header mobile tuning: larger logo, hide brand-text on very small screens, right-align hamburger */
@media (max-width: 900px) {
  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand-text {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
    margin-left: 8px;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .header-inner {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .brand-text {
    font-size: 22px;
  }
}

@media (max-width: 380px) {
  .brand-text {
    display: none;
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }
}

/* Mobile nav toggle styles */
.nav-toggle {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  position: relative;
  border-radius: 2px;
  transition: background 240ms ease;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 260ms cubic-bezier(.2,.9,.2,1), top 260ms cubic-bezier(.2,.9,.2,1), background 260ms ease, opacity 180ms ease;
}
.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after { top: 7px; }

/* Animated/open state for hamburger -> X */
.nav-toggle.is-open .nav-toggle-icon {
  background: transparent;
}
.nav-toggle.is-open .nav-toggle-icon::before {
  transform: translateY(7px) rotate(45deg);
  top: 0;
  background: var(--brand-wine);
}
.nav-toggle.is-open .nav-toggle-icon::after {
  transform: translateY(-7px) rotate(-45deg);
  top: 0;
  background: var(--brand-green);
}

@media (max-width: 900px) {
  .nav { display: flex; position: fixed; top: 64px; right: 12px; left: 12px; background: #ffffff; border-radius: 10px; padding: 12px; box-shadow: 0 16px 40px rgba(0,0,0,0.18); z-index: 9999; flex-direction: column; gap: 8px; opacity: 0; transform: translateY(-8px) scale(0.995); transition: opacity 260ms ease, transform 260ms cubic-bezier(.2,.9,.2,1); pointer-events: none; }
  .nav.nav--open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .nav-link { display: block; padding: 10px 12px; border-radius: 8px; color: #111; opacity: 0; transform: translateY(6px); transition: opacity 240ms ease, transform 240ms ease; }
  .nav.nav--open .nav-link { opacity: 1; transform: translateY(0); }
  /* Staggered link delays */
  #primary-nav.nav--open .nav-link:nth-of-type(1) { transition-delay: 0.04s; }
  #primary-nav.nav--open .nav-link:nth-of-type(2) { transition-delay: 0.08s; }
  #primary-nav.nav--open .nav-link:nth-of-type(3) { transition-delay: 0.12s; }
  #primary-nav.nav--open .nav-link:nth-of-type(4) { transition-delay: 0.16s; }
  #primary-nav.nav--open .nav-link:nth-of-type(5) { transition-delay: 0.20s; }
  #primary-nav.nav--open .nav-link:nth-of-type(6) { transition-delay: 0.24s; }
  .nav-link:hover { background: rgba(0,0,0,0.04); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  body.is-nav-open { overflow: hidden; }
  .header-inner { gap: 8px; }
}

/* UI refresh */
:root {
  --bg: #f6f1ea;
  --surface: #fffdf9;
  --surface-2: #f1e9df;
  --ink: #1b1512;
  --muted: #5d544b;
  --brand-green: #0c5a49;
  --brand-green-2: #0a3f34;
  --brand-wine: #6a2134;
  --brand-wine-2: #3f1622;
  --accent-gold: #c8a36a;
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 22px 44px rgba(0, 0, 0, 0.22);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 8%, rgba(12, 90, 73, 0.14), rgba(12, 90, 73, 0) 45%),
    radial-gradient(circle at 84% 0%, rgba(106, 33, 52, 0.12), rgba(106, 33, 52, 0) 40%),
    radial-gradient(circle at 80% 80%, rgba(200, 163, 106, 0.15), rgba(200, 163, 106, 0) 45%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
}

.page-home,
.page-about,
.page-services,
.page-contact {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 90% 20%, rgba(12, 90, 73, 0.08), rgba(12, 90, 73, 0) 55%),
    var(--bg);
}

.page-auth {
  background:
    radial-gradient(circle at 12% 10%, rgba(12, 90, 73, 0.2), rgba(12, 90, 73, 0) 45%),
    radial-gradient(circle at 90% 0%, rgba(106, 33, 52, 0.18), rgba(106, 33, 52, 0) 45%),
    #f4efe7;
}

.site-header {
  background: rgba(250, 246, 240, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.brand-text {
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

.nav-link.is-active::after {
  background: linear-gradient(90deg, var(--brand-green), var(--brand-wine));
}

.hero {
  padding: 84px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 80% 10%, rgba(12, 90, 73, 0.1), rgba(12, 90, 73, 0) 45%);
  pointer-events: none;
}

.hero-copy {
  animation: fade-up 700ms ease both;
}

.hero-title {
  font-family: var(--font-display);
  letter-spacing: -1px;
}

.hero-title-accent {
  color: var(--brand-wine);
}

.hero-title-brand {
  color: var(--brand-green);
}

.hero-subtitle {
  font-size: 15px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-highlights {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  animation: fade-up 700ms ease both;
  animation-delay: 120ms;
}

.hero-highlights li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.hero-highlights strong {
  font-size: 13px;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-blob {
  animation: float-slow 9s ease-in-out infinite;
  opacity: 0.22;
}

.hero-frame {
  position: relative;
  width: min(360px, 92%);
  height: 360px;
  border-radius: 28px;
  padding: 22px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  animation: float-slow 7s ease-in-out infinite;
}

.hero-frame-image {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-size: cover;
  background-position: center;
}

.hero-frame-image--main {
  width: 100%;
  height: 220px;
  background-image: url("../assets/portfolio/portfolio-3.png");
}

.hero-frame-image--stack {
  position: absolute;
  width: 160px;
  height: 190px;
  right: 18px;
  bottom: 22px;
  transform: rotate(3deg);
  background-image: url("../assets/portfolio/portfolio-6.png");
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.hero-frame-chip {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-wine));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(30px, 3.4vw, 42px);
}

.section-subtitle {
  font-size: 14px;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.tabs {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.tab {
  font-size: 12px;
  letter-spacing: 0.3px;
}

.about-title span {
  text-decoration-color: var(--accent-gold);
}

.about-values {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-value-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-value-title {
  margin: 0;
  font-size: 18px;
}

.about-value-text {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.services-hero-banner {
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.24);
}

.services-hero-actions {
  margin: -18px auto 0;
  max-width: 980px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

.services-hero-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.services-hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.packages-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.package-card--modern {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 233, 0.96));
}

.service-poster {
  background: linear-gradient(170deg, #ffffff, #f1ebe2);
}

.contact-info {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.92);
}

.contact-field input,
.contact-field textarea {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.auth-panel--form {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(240, 233, 224, 0.9));
}

.auth-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
}

.auth-form-subtitle {
  margin: -4px 0 8px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.auth-field input,
.auth-field select {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 18px rgba(0, 0, 0, 0.08);
}

.auth-btn {
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-highlights,
  .hero-frame,
  .hero-blob {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .services-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .services-hero-actions {
    padding: 14px 16px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-panel--promo {
    min-height: auto;
    padding: 36px 0;
  }

  .auth-form {
    padding: 22px;
  }
}
