/* ============================================================
   KL Milky Nails — shared stylesheet
   Palette: cream #efe7dd · card #fcf7f1 · gold #c29a54
            pink #d25a7d · ink #3a322e · body text #4a4038
   ============================================================ */

:root {
  --cream: #efe7dd;
  --card: #fcf7f1;
  --gold: #c29a54;
  --gold-deep: #9a7a3a;
  --pink: #d25a7d;
  --pink-deep: #b6547a;
  --ink: #3a322e;
  --text: #4a4038;
  --text-soft: #6f6459;
  --text-muted: #8a7e75;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background-color: var(--cream);
  background-image: radial-gradient(circle at 42px 42px, rgba(194, 154, 84, .14) 2.5px, transparent 3.5px);
  background-size: 96px 96px;
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--pink); }

/* Decorative polka-dot backgrounds */
.dots-light {
  background-color: var(--card);
  background-image:
    radial-gradient(circle at 42px 30px, rgba(210, 90, 125, .10) 4.5px, transparent 5.5px),
    radial-gradient(circle at 30px 42px, rgba(194, 154, 84, .10) 4.5px, transparent 5.5px),
    radial-gradient(circle at 54px 42px, rgba(194, 154, 84, .10) 4.5px, transparent 5.5px),
    radial-gradient(circle at 42px 54px, rgba(210, 90, 125, .10) 4.5px, transparent 5.5px),
    radial-gradient(circle at 42px 42px, rgba(194, 154, 84, .18) 2.5px, transparent 3.5px);
  background-size: 96px 96px;
}

.dots-cream {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 42px 30px, rgba(210, 90, 125, .12) 4.5px, transparent 5.5px),
    radial-gradient(circle at 30px 42px, rgba(194, 154, 84, .13) 4.5px, transparent 5.5px),
    radial-gradient(circle at 54px 42px, rgba(194, 154, 84, .13) 4.5px, transparent 5.5px),
    radial-gradient(circle at 42px 54px, rgba(210, 90, 125, .12) 4.5px, transparent 5.5px),
    radial-gradient(circle at 42px 42px, rgba(194, 154, 84, .2) 2.5px, transparent 3.5px);
  background-size: 96px 96px;
}

/* ============ Navbar ============ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 24px 44px;
  background: var(--card);
  border-bottom: 1px solid rgba(194, 154, 84, .2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  background: rgba(194, 154, 84, .08);
}

.brand-name {
  font-family: 'Pinyon Script', cursive;
  font-size: 28px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 32px;
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--gold);
}

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

.nav-links .active {
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(210, 90, 125, .1);
  color: var(--pink-deep) !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(182, 84, 122, .35);
  color: var(--pink-deep) !important;
}

/* ============ Page title hero ============ */
.page-hero {
  padding: 70px 44px 50px;
  text-align: center;
  border-bottom: 1px solid rgba(194, 154, 84, .15);
}

.page-hero .hero-mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--gold);
  background: rgba(194, 154, 84, .06);
}

.page-hero .hero-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 58px;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 10px;
}

.page-hero .hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.page-hero .hero-subtitle .rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.page-hero .hero-subtitle .label {
  margin: 0;
  font-size: 22px;
  letter-spacing: .38em;
  color: var(--pink);
  font-weight: 500;
}

/* ============ Price menu ============ */
.menu-section {
  padding: 70px 44px;
  background: var(--card);
}

.menu-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 0 80px;
}

.menu-category { margin-bottom: 48px; }

.menu-category h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: .04em;
  margin: 0 0 6px;
}

.menu-category .rule {
  height: 1px;
  background: rgba(194, 154, 84, .35);
  margin-bottom: 14px;
}

.menu-category .divider {
  height: 1px;
  background: rgba(194, 154, 84, .25);
  margin: 10px 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
}

.price-row .leader {
  flex: 1;
  min-width: 20px;
  border-bottom: 1px dotted rgba(194, 154, 84, .55);
  transform: translateY(-4px);
}

.price-row .price {
  color: var(--pink);
  font-weight: 500;
}

/* ============ Thank-you card ============ */
.thanks-card {
  border: 1px solid rgba(194, 154, 84, .35);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  background: var(--cream);
}

.thanks-card .script {
  font-family: 'Pinyon Script', cursive;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 6px;
}

.thanks-card .eyebrow {
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--gold-deep);
  margin-bottom: 4px;
}

.thanks-card .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 12px;
}

.thanks-card .note {
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ Section shells ============ */
.section {
  padding: 80px 44px;
  border-top: 1px solid rgba(194, 154, 84, .15);
}

.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading .eyebrow {
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
  align-items: stretch;
}

/* ============ Package cards ============ */
.package-card {
  background: var(--card);
  border: 1px solid rgba(194, 154, 84, .25);
  border-radius: 16px;
  padding: 30px 28px;
}

.package-card .card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.package-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 25px;
  font-weight: 600;
  color: var(--pink);
  margin: 0;
}

.package-card .price {
  font-size: 20px;
  color: var(--gold);
  font-weight: 500;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 2;
}

/* ============ Policy cards ============ */
.policy-card {
  background: var(--cream);
  border: 1px solid rgba(194, 154, 84, .25);
  border-radius: 16px;
  padding: 30px 28px;
}

.policy-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--pink);
  margin: 0 0 16px;
  text-align: center;
}

.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-note {
  text-align: center;
  margin-top: 36px;
}

.policy-note .small {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.policy-note .signoff {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--pink);
}

/* ============ Landing: animations ============ */
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.js .scroll-fade-in {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1);
}

.js .scroll-fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============ Landing: fixed navbar ============ */
.navbar--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(16px, 3vw, 26px) clamp(20px, 4.5vw, 44px);
  background: rgba(252, 247, 241, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity .45s ease;
}

.navbar--fixed.nav-hidden {
  opacity: 0;
  pointer-events: none;
}

.navbar--fixed .brand {
  transition: transform .3s ease;
}

.navbar--fixed .brand:hover {
  transform: translateY(-3px) scale(1.08);
}

.navbar--fixed .brand-mark {
  border-width: 2.5px;
  box-shadow: 0 0 20px rgba(194, 154, 84, .15);
  transition: box-shadow .3s ease, background .3s ease;
}

.navbar--fixed .brand:hover .brand-mark {
  box-shadow: 0 0 36px rgba(194, 154, 84, .75);
  background: rgba(194, 154, 84, .28);
}

.navbar--fixed .brand-name {
  font-size: clamp(24px, 3vw, 32px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.navbar--fixed .nav-links {
  gap: 10px clamp(16px, 2.5vw, 32px);
}

.navbar--fixed .nav-links a:not(.nav-phone),
.navbar--fixed .nav-links .active {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .25s ease, border-color .25s ease, transform .25s ease, text-shadow .25s ease;
}

.navbar--fixed .nav-links .active {
  font-weight: 500;
  border-bottom-color: var(--gold);
}

.navbar--fixed .nav-links a:not(.nav-phone):hover,
.navbar--fixed .nav-links .active:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
  transform: translateY(-3px) scale(1.12);
  text-shadow: 0 4px 14px rgba(210, 90, 125, .45);
}

.navbar--fixed .nav-phone {
  background: rgba(255, 255, 255, .92);
  padding: 11px 20px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.navbar--fixed .nav-phone:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 14px 30px rgba(182, 84, 122, .5);
  background: #ffffff;
}

/* ============ Landing: hero ============ */
.hero {
  position: relative;
  min-height: clamp(540px, 78vh, 700px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 96px;
  box-sizing: border-box;
}

.hero .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(252, 247, 241, .55) 0%, rgba(252, 247, 241, .12) 45%, rgba(0, 0, 0, .12) 100%);
}

.hero-card {
  position: relative;
  margin: auto auto 48px clamp(20px, 4.5vw, 44px);
  background: rgba(252, 247, 241, .92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(194, 154, 84, .35);
  border-radius: 20px;
  padding: clamp(26px, 4vw, 40px) clamp(24px, 4vw, 44px);
  max-width: min(460px, calc(100% - clamp(40px, 9vw, 88px)));
  box-sizing: border-box;
}

.hero-card .eyebrow {
  font-size: 11px;
  letter-spacing: .32em;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 8px;
  text-wrap: pretty;
}

.hero-card .script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(30px, 4vw, 40px);
  color: var(--pink);
  margin: 0 0 20px;
}

.hero-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 26px;
}

.hero-card .cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .05em;
  font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(194, 154, 84, .4);
  background: #b18843;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold-deep) !important;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .05em;
  font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(194, 154, 84, .25);
  background: rgba(194, 154, 84, .12);
  color: #7d6330 !important;
}

/* ============ Landing: sections ============ */
.landing-section {
  padding: clamp(56px, 8vw, 80px) clamp(20px, 4.5vw, 44px);
}

.landing-section .section-inner { max-width: 1200px; }

.landing-section .section-heading { margin-bottom: clamp(40px, 6vw, 60px); }

.landing-section .section-heading h2 {
  font-size: clamp(34px, 4.5vw, 48px);
}

/* Specialty trio */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.specialty-card { text-align: center; }

.specialty-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(194, 154, 84, .1);
  margin-bottom: 16px;
  display: block;
  box-sizing: border-box;
}

.specialty-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 500;
}

.specialty-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Gallery preview tiles */
.preview-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(220px, 22%), 1fr));
  gap: 20px;
}

.gallery-hover-item {
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.gallery-hover-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hover-item.visible { transition: transform .35s ease, box-shadow .35s ease; }

.gallery-hover-item.visible:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 30px rgba(58, 50, 46, .18);
}

/* Testimonials ticker */
.ticker-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 45s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

.testimonial-card {
  width: min(420px, 82vw);
  flex: 0 0 auto;
  margin-right: 28px;
  background: #fff;
  border: 1px solid rgba(194, 154, 84, .2);
  border-radius: 16px;
  padding: 36px 34px;
  box-sizing: border-box;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: .15em;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.55;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--gold);
  font-size: 14px;
}

/* Booking */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3.5vw, 36px);
  align-items: stretch;
}

.booking-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(194, 154, 84, .18);
  padding: clamp(30px, 5vw, 48px);
  box-shadow: 0 10px 40px rgba(58, 50, 46, .06);
}

.booking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(28px, 4vw, 40px);
  margin-bottom: 36px;
}

.booking-info .label {
  font-weight: 600;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.booking-info .phone {
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
}

.booking-info .phone a {
  color: var(--ink);
  transition: color .25s ease;
}

.booking-info .phone a:hover { color: var(--gold); }

.booking-info .detail {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.9;
}

.booking-info .note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.booking-info .detail a {
  color: var(--gold);
  text-decoration: underline;
  transition: color .25s ease;
}

.booking-info .detail a:hover { color: var(--pink); }

.booking-cta {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(194, 154, 84, .15);
  padding-top: 32px;
}

.booking-cta .btn-gold {
  padding: 16px 40px;
  font-size: 14px;
}

.booking-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(194, 154, 84, .18);
  box-shadow: 0 10px 40px rgba(58, 50, 46, .06);
  min-height: 340px;
}

.booking-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

/* ============ Landing: centered footer ============ */
.site-footer--centered {
  padding: clamp(40px, 6vw, 56px) clamp(20px, 4.5vw, 44px);
}

.site-footer--centered .footer-col {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(194, 154, 84, .5);
  color: var(--gold) !important;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.footer-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 154, 84, .35);
  background: rgba(194, 154, 84, .18);
  color: #d9b98a !important;
}

.footer-copyright {
  font-size: 12px;
  color: #a8998a;
}

/* ============ Gallery page ============ */
.page-hero .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.1;
}

.page-hero .hero-script-sub {
  font-family: 'Pinyon Script', cursive;
  font-size: 32px;
  color: var(--pink);
}

.portfolio-section {
  padding: 70px 44px;
}

.portfolio-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 24px;
}

.portfolio-grid .photo {
  aspect-ratio: 9 / 16;
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
}

.portfolio-grid .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.pagination button {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: .05em;
  font-weight: 500;
  color: var(--gold-deep);
  background: none;
  border: 1.5px solid rgba(194, 154, 84, .5);
  border-radius: 999px;
  padding: 10px 18px;
  min-width: 42px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.pagination button:hover:not(:disabled):not(.active) {
  background: rgba(194, 154, 84, .12);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 154, 84, .2);
}

.pagination button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  cursor: default;
}

.pagination button:disabled {
  opacity: .35;
  cursor: default;
}

.portfolio-follow {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
}

.portfolio-follow .handle {
  color: var(--gold);
  font-weight: 500;
}

/* ============ Footer ============ */
.site-footer {
  padding: 40px 44px;
  background: var(--ink);
  color: #d9b7bd;
}

.site-footer .footer-row {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer .brand-mark {
  width: 36px;
  height: 36px;
  border-width: 1.5px;
  font-size: 16px;
  background: none;
}

.site-footer .brand-name { font-size: 22px; }

.footer-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-contact strong { color: var(--gold); }
.footer-contact a { color: #d9b7bd; }
.footer-contact a:hover { color: #fff; }

.footer-book {
  background: var(--gold);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .05em;
  font-weight: 500;
}

.footer-book:hover { color: #fff; filter: brightness(1.08); }

.footer-bottom {
  max-width: 1060px;
  margin: 24px auto 0;
  border-top: 1px solid rgba(194, 154, 84, .2);
  padding-top: 18px;
  text-align: center;
  font-size: 12px;
  color: #a8998a;
}
