:root {
  --bg: #0b0b0a;
  --bg-alt: #151513;
  --panel: #141412;
  --gold: #9c6a2e;        /* primary accent (warm amber/gold) */
  --gold-light: #cfa15e;  /* accent hover / highlight (light amber) */
  --cream: #f5f2ea;       /* primary text (off-white) */
  --text-muted: #9a9487;
  --border: #2b2a25;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 3px;
  color: var(--cream);
  text-transform: uppercase;
}

h3, h4 {
  letter-spacing: 1.8px;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0e0c09;
  border-bottom: 1px solid #2a2620;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: normal;
  color: #f3efe7;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo span { color: var(--gold-light); font-weight: 600; }

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: 12px;
  border-radius: 50%;
  border: 1px solid #2a2620;
  color: #8a8377;
  transition: color 0.2s, border-color 0.2s;
}

.admin-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-size: 0.7rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--font-sans);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.25s;
  opacity: 0.7;
  color: #f3efe7;
}

.nav-links a:hover, .nav-links a.active {
  opacity: 1;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold-light);
}

.nav-links a.btn {
  background: #f3efe7;
  border-color: #f3efe7;
  color: #0e0c09;
  opacity: 1;
  padding: 10px 22px;
  font-size: 0.7rem;
}

.nav-links a.btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}

.nav-links a.btn-outline-nav {
  background: transparent;
  border-color: var(--gold-light);
  color: #f3efe7;
  opacity: 1;
  padding: 9px 20px;
  font-size: 0.7rem;
}

.nav-links a.btn-outline-nav:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0e0c09;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #f3efe7;
  color: #f3efe7;
  font-size: 1.2rem;
  padding: 6px 10px;
  cursor: pointer;
}

.navbar-mobile-actions {
  display: none;
}

.nav-avatar-item {
  position: relative;
  list-style: none;
}

.nav-avatar-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, transform 0.2s;
}

.nav-avatar-btn:hover .nav-avatar {
  border-color: var(--gold);
  transform: scale(1.05);
}

.nav-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-avatar-initials {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--gold-light);
}

.nav-avatar-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  background: var(--bg-alt);
  border: 1px solid #2a2620;
  border-radius: 14px;
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.nav-avatar-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-avatar-dropdown-header {
  padding: 4px 20px 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid #2a2620;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-avatar-dropdown-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
}

.nav-avatar-dropdown-email {
  font-size: 0.72rem;
  color: var(--text-muted);
  word-break: break-all;
}

.nav-avatar-dropdown a,
.nav-avatar-dropdown button {
  text-align: left;
  background: none;
  border: none;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  color: var(--cream);
  opacity: 0.85;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}

.nav-avatar-dropdown a:hover,
.nav-avatar-dropdown button:hover {
  background: rgba(156, 106, 46, 0.15);
  opacity: 1;
  color: var(--gold-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid var(--cream);
  border-radius: 999px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-weight: 400;
  font-family: var(--font-sans);
  transition: all 0.25s;
  cursor: pointer;
  background: transparent;
}

.btn:hover {
  background: var(--cream);
  color: var(--bg);
}

.btn-solid {
  background: var(--cream);
  color: var(--bg);
  border-color: var(--cream);
}

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

/* Hero */
.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--bg);
  padding: 80px 24px;
}

.hero-eyebrow {
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 300;
  font-family: var(--font-sans);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.2;
  letter-spacing: 5px;
  margin-bottom: 28px;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.02rem;
  text-transform: none;
  font-family: var(--font-sans);
}

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

/* Dark photographic hero (hotel-spa style) */
.hero-dark {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  background:
    linear-gradient(100deg, rgba(8,7,5,0.92) 0%, rgba(8,7,5,0.6) 42%, rgba(8,7,5,0.15) 65%),
    radial-gradient(circle at 75% 35%, #c97a33 0%, #8a4a1f 28%, #3a2414 55%, #14100b 80%);
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 560px;
  padding: 80px 5%;
}

.hero-content h1 {
  color: #f3efe7;
}

.hero-content p {
  color: #e7e0d2;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.btn-gold {
  display: inline-block;
  padding: 16px 34px;
  background: var(--gold-light);
  color: #1c1a14;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 14px;
}

.btn-gold:hover {
  background: #e0b876;
}

/* Feature strip below hero */
.feature-strip {
  background: #0e0c09;
  padding: 30px 0;
}

.feature-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}

.feature-strip .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-strip .feature-item .ico {
  font-size: 1.4rem;
  color: var(--gold-light);
}

.feature-strip .feature-item span.label {
  color: #f3efe7;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.hero-bottombar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 26px 40px;
}

.hero-bottombar .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream);
  font-size: 1rem;
}

.hero-bottombar .right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-bottombar .phone {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream);
  font-size: 1rem;
}

.btn-square {
  display: inline-block;
  padding: 14px 28px;
  background: var(--cream);
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s;
}

.btn-square:hover {
  background: var(--gold);
}

/* Sections */
section { padding: 120px 0; scroll-margin-top: 90px; }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .hero-eyebrow { margin-bottom: 14px; }

.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: 4px; }

.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

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

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

.card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px;
  transition: transform 0.3s, border-color 0.3s;
}

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

.card .icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.card h3 { font-size: 1.15rem; margin-bottom: 10px; letter-spacing: 1px; }

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: none;
  font-family: var(--font-sans);
}

/* Alternate bg sections */
.bg-alt { background: var(--bg-alt); }

/* About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img, .img-frame {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.img-frame {
  background: linear-gradient(160deg, #211f1a, #0b0b0a);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: var(--cream);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: none;
  font-weight: 500;
  padding: 20px;
  position: relative;
}

.img-frame.photo::before,
.img-frame.photo::after {
  display: none;
}

.img-frame::before {
  content: "";
  position: absolute;
  top: 16px; right: 16px;
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
}

.img-frame::after {
  content: "+";
  position: absolute;
  top: 16px; right: 16px;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg);
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Gallery grid (homepage hero-style tiles) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 140px 140px 140px;
  gap: 16px;
}

.gallery-grid .img-frame {
  height: 100%;
}

.gallery-grid .img-frame:nth-child(1) { grid-row: span 2; }
.gallery-grid .img-frame:nth-child(2) { grid-row: span 1; }
.gallery-grid .img-frame:nth-child(3) { grid-row: span 1; }
.gallery-grid .img-frame:nth-child(4) { grid-row: span 2; grid-column: 2; }

/* Pricing */
.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
}

.price-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.price-card h3 { margin-bottom: 6px; }

.price-card .price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  margin: 14px 0;
}

.price-card .price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: none;
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  margin: 24px 0 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* Services table */
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}

.service-row h3 { font-size: 1.1rem; }
.service-row p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 6px;
  text-transform: none;
  font-family: var(--font-sans);
}
.service-row .price {
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 1.2rem;
  white-space: nowrap;
}

/* Forms */
.form-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--cream);
  padding: 13px 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

select {
  color-scheme: dark;
}

select option {
  background: var(--bg);
  color: var(--cream);
  padding: 10px 14px;
}

select option:hover,
select option:checked,
select option:focus {
  background: var(--gold);
  color: #1c1a14;
}

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

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

.booking-summary {
  margin-bottom: 18px;
}

.booking-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.booking-summary-row .booking-summary-name {
  flex: 1;
}

.booking-summary-row .booking-summary-price {
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  white-space: nowrap;
}

.booking-summary-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 6px;
}

.booking-summary-remove:hover {
  color: #b3463c;
}

.booking-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.booking-subtotal {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.booking-subtotal-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.booking-subtotal-value {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}

.form-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

#form-status {
  margin-top: 16px;
  font-size: 0.9rem;
}

#form-status.success { color: var(--cream); }
#form-status.error { color: #b3463c; }

/* Contact info list */
.contact-info { display: flex; flex-direction: column; gap: 26px; }

.contact-info .item h4 { margin-bottom: 6px; font-size: 1rem; }
.contact-info .item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-transform: none;
  font-family: var(--font-sans);
}

/* Testimonials */
.quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.quote-author {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* CTA band */
.cta-band {
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Partner strip */
.partner-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.partner-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.partner-strip span {
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Footer */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--cream);
}

.footer-grid ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: none;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  text-transform: none;
  font-family: var(--font-sans);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* Responsive */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

.nav-close { display: none; }

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: #0e0c09;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 32px 40px;
    gap: 26px;
    border-bottom: none;
    display: none;
    overflow-y: auto;
    z-index: 200;
  }

  .nav-links a {
    opacity: 1;
    color: #f3efe7;
    font-size: 1.1rem;
    letter-spacing: 1px;
    width: 100%;
    display: block;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--panel);
    transition: background 0.2s, border-color 0.2s;
  }

  .nav-links a:hover,
  .nav-links a:active,
  .nav-links a.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #1c1a14;
  }

  .nav-links a.active::after { display: none; }

  .nav-links a.btn,
  .nav-links a.btn-outline-nav {
    color: #f3efe7;
    border-color: #f3efe7;
    background: transparent;
    width: auto;
    margin-top: 8px;
  }

  .nav-links a.btn:hover,
  .nav-links a.btn-outline-nav:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #fff;
  }

  .nav-links li { width: 100%; padding-bottom: 0; }

  .nav-close {
    display: flex;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #f3efe7;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-block; }

  .nav-links li:has(a.cart-link) { display: none; }

  .nav-avatar-item {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

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

  .nav-avatar {
    width: 64px;
    height: 64px;
  }

  .nav-avatar-initials {
    font-size: 1.3rem;
  }

  .nav-avatar-dropdown {
    position: fixed;
    top: auto;
    left: 50%;
    right: auto;
    bottom: 110px;
    transform: translate(-50%, 12px);
    width: min(280px, calc(100vw - 64px));
  }

  .nav-avatar-dropdown.open {
    transform: translate(-50%, 0);
  }

  .navbar-mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    margin-right: 14px;
  }

  .navbar-mobile-actions .cart-link { position: relative; color: #f3efe7; }
}

/* Mobile hero photo sizing */
@media (max-width: 720px) {
  .hero-dark {
    min-height: 78vh;
    background-size: 280% auto !important;
    background-position: 100% 0% !important;
  }

  .hero-content {
    max-width: 100%;
    padding: 70px 6% !important;
  }
}

/* Service row clickable */
.service-row.clickable {
  cursor: pointer;
  transition: background 0.2s;
}

.service-row.clickable:hover {
  background: rgba(156, 106, 46, 0.06);
}

/* Service detail modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 9, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--panel);
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.modal .modal-duration {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.modal .modal-description {
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.modal .modal-price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 24px;
}

/* Cart badge in nav */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-badge {
  display: none;
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--gold-light);
  color: #1c1a14;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-badge.visible {
  display: flex;
}

.floating-feedback-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--gold);
  color: #1c1a14;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(28, 26, 20, 0.28);
  z-index: 1200;
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-feedback-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(28, 26, 20, 0.35);
}

@media (max-width: 640px) {
  .floating-feedback-btn {
    bottom: 18px;
    right: 16px;
    padding: 11px 18px;
    font-size: 0.8rem;
  }
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1c1a14;
  color: #f3efe7;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.88rem;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Cart bump animation */
@keyframes cart-bump {
  0% { transform: scale(1); }
  30% { transform: scale(1.35) rotate(-8deg); }
  55% { transform: scale(0.95) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}

.cart-link.bump svg {
  animation: cart-bump 0.5s ease;
}

@keyframes badge-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.6); background: var(--gold); color: #fff; }
  100% { transform: scale(1); }
}

.cart-badge.pop {
  animation: badge-pop 0.5s ease;
}

/* Add-to-cart button success state */
.btn.added {
  background: #3f6b3a !important;
  border-color: #3f6b3a !important;
  color: #fff !important;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(156, 106, 46, 0.45); }
  100% { box-shadow: 0 0 0 14px rgba(156, 106, 46, 0); }
}

.cart-link.bump {
  animation: pulse-ring 0.6s ease-out;
  border-radius: 999px;
}

.cart-summary {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cart-summary.visible {
  display: flex;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.cart-row h3 { font-size: 1.05rem; margin-bottom: 4px; }

.cart-row .cart-row-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cart-row-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.cart-row-remove:hover {
  color: #b3463c;
}

.cart-note {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Admin dashboard */
.admin-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 14px;
}

.admin-card .admin-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}

.admin-card h4 {
  font-size: 1.05rem;
  margin: 0;
}

.admin-card .admin-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.admin-card .admin-field {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.admin-card .admin-field strong {
  color: var(--cream);
  font-weight: 500;
}

.admin-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 20px 0;
}

.status-badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  border: 1px solid transparent;
}

.status-pending { background: rgba(207, 161, 94, 0.16); color: #e0b46e; border-color: rgba(207, 161, 94, 0.35); }
.status-confirmed { background: rgba(86, 152, 196, 0.16); color: #8cc6f0; border-color: rgba(86, 152, 196, 0.35); }
.status-completed { background: rgba(86, 167, 99, 0.16); color: #93e0a3; border-color: rgba(86, 167, 99, 0.35); }
.status-cancelled { background: rgba(196, 86, 86, 0.16); color: #f0a0a0; border-color: rgba(196, 86, 86, 0.35); }

.review-badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  background: rgba(86, 152, 196, 0.16);
  color: #8cc6f0;
  border: 1px solid rgba(86, 152, 196, 0.35);
  margin-left: 8px;
}

.urgent-badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  background: rgba(196, 86, 86, 0.16);
  color: #f0a0a0;
  border: 1px solid rgba(196, 86, 86, 0.35);
  margin-left: 8px;
}

.history-timeline {
  border-left: 2px solid var(--border);
  margin: 18px 0 0 8px;
  padding-left: 20px;
}

.history-item {
  position: relative;
  padding-bottom: 18px;
}

.history-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light, #cfa15e);
}

.history-item .history-label {
  font-weight: 600;
  font-size: 0.92rem;
}

.history-item .history-time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.diff-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.diff-row:last-child { border-bottom: none; }

.diff-row .diff-field {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.diff-row .diff-old {
  color: #f0a0a0;
  text-decoration: line-through;
  opacity: 0.75;
}

.diff-row .diff-new {
  color: #93e0a3;
}

/* Multi-select treatment checkboxes (booking form) */
.service-checkbox-list {
  border: 1px solid var(--border);
  border-radius: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding: 6px 0;
}

.service-checkbox-group-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 10px 16px 4px;
}

.service-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  cursor: pointer;
  font-size: 0.92rem;
  transition: background 0.15s;
}

.service-checkbox-item:hover {
  background: var(--bg-alt);
}

.service-checkbox-item input {
  width: auto;
  accent-color: var(--gold);
}

.service-checkbox-item.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.service-checkbox-item .price {
  margin-left: auto;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 2rem;
  background: var(--panel);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner-visible {
  transform: translateY(0);
}

.cookie-banner-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-banner-text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cream);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-accept {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.cookie-btn-reject:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner-actions {
    justify-content: center;
  }
}

/* Client Profile Dashboard */
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  animation: dashFadeIn 0.5s ease both;
}

.dashboard-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.dashboard-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.dashboard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashboard-avatar-initials {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
}

.dashboard-avatar-upload {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #1c1a14;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--bg);
  font-size: 0.9rem;
  transition: transform 0.2s, background 0.2s;
}

.dashboard-avatar-upload:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

.dashboard-avatar-upload input {
  display: none;
}

.dashboard-welcome h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 6px;
}

.dashboard-welcome p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 760px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-header { padding: 26px; text-align: center; flex-direction: column; }
}

.dashboard-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  animation: dashFadeIn 0.5s ease both;
}

.dashboard-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.dashboard-info-row:last-child { border-bottom: none; }

.dashboard-info-row span:first-child {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.dashboard-info-row span:last-child {
  color: var(--cream);
  text-align: right;
}

.dashboard-status-pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
}

.dashboard-status-pill.confirmed,
.dashboard-status-pill.sent { border-color: #6fae7c; color: #6fae7c; }
.dashboard-status-pill.cancelled { border-color: #c4665c; color: #c4665c; }
.dashboard-status-pill.completed { border-color: var(--text-muted); color: var(--text-muted); }

.dashboard-settings-toggle {
  cursor: pointer;
  user-select: none;
}

.dashboard-settings-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.dashboard-settings-body.open {
  max-height: 2400px;
}

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