:root {
  --bg-white: #FFFFFF;
  --bg-cream: #F8F6F3;
  --bg-dark: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-body: #555555;
  --text-light: #999999;
  --accent: #B8935A;
  --accent-hover: #D4AA6A;
  --border: #E8E4DF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg-white); color: var(--text-primary); font-family: var(--font-ui); overflow-x: hidden; line-height: 1.7; }
::selection { background: var(--accent); color: #fff; }
img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
.container { width: min(1200px, 90vw); margin: 0 auto; }

/* ═══ NAV ═══ */
#nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 72px; z-index: 1000;
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; width: min(1200px, 90vw); margin: 0 auto; padding: 0 8px;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
  color: var(--text-primary); letter-spacing: .08em;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .1em; color: var(--text-body);
  transition: color .2s; text-transform: uppercase;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-call { display: none; font-size: 1.1rem; color: var(--accent); padding: 8px; min-width: 40px; min-height: 40px; display: none; align-items: center; justify-content: center; }
.nav-call svg { stroke: var(--accent); }
.nav-cta {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  color: var(--text-primary); border: 1.5px solid var(--text-primary);
  padding: 10px 24px; transition: all .2s;
}
.nav-cta:hover { background: var(--text-primary); color: var(--bg-white); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; width: 100%; background: var(--bg-white);
  flex-direction: column; align-items: center; padding: 32px 0; gap: 20px; z-index: 999;
  border-bottom: 1px solid var(--border); transform: translateY(-120%); transition: transform .4s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-size: .9rem; letter-spacing: .1em; color: var(--text-body); font-weight: 500; }
.mobile-nav-cta { border: 1.5px solid var(--text-primary); padding: 10px 28px; color: var(--text-primary) !important; }
.mobile-nav-phone { color: var(--accent) !important; font-size: .85rem; }

/* ═══ HERO CAROUSEL ═══ */
#hero { position: relative; height: 85vh; min-height: 500px; margin-top: 72px; overflow: hidden; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px; }
.hero-subtitle {
  font-family: var(--font-ui); font-size: .82rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 20px;
}
.hero-heading {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff; line-height: 1.2; margin-bottom: 32px;
}
.typewriter-wrap { color: rgba(255,255,255,.85); }
.cursor { color: var(--accent); animation: blink .85s step-end infinite; }
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:0 } }
.hero-btn {
  display: inline-block; font-size: .82rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; border: 1.5px solid #fff; padding: 14px 36px;
  transition: all .3s;
}
.hero-btn:hover { background: #fff; color: var(--bg-dark); }
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid #fff;
  background: transparent; cursor: pointer; transition: .3s; padding: 0;
}
.hero-dot.active { background: #fff; }

/* ═══ INTRO ═══ */
#intro { padding: 100px 0; background: var(--bg-white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-heading {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--text-primary); line-height: 1.25; margin-bottom: 24px;
}
.intro-text { font-size: .95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.intro-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }

/* ═══ BUTTONS ═══ */
.btn-outline {
  display: inline-block; font-size: .82rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-primary); border: 1.5px solid var(--text-primary);
  padding: 12px 28px; transition: all .25s;
}
.btn-outline:hover { background: var(--text-primary); color: var(--bg-white); }
.btn-outline-light {
  display: inline-block; font-size: .82rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; border: 1.5px solid rgba(255,255,255,.5);
  padding: 12px 28px; transition: all .25s;
}
.btn-outline-light:hover { background: #fff; color: var(--bg-dark); }
.btn-solid {
  display: inline-block; font-size: .82rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; background: var(--text-primary); color: var(--bg-white);
  padding: 14px 36px; border: none; transition: all .25s; cursor: pointer;
}
.btn-solid:hover { background: var(--accent); }

/* ═══ SECTION HEADERS ═══ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  font-size: .75rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: block;
}
.section-label--dark { color: var(--accent); }
.section-heading {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary); line-height: 1.3;
}
.section-heading--light { color: #fff; }

/* ═══ SERVICES ═══ */
#services { padding: 100px 0; background: var(--bg-cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.svc-card {
  background: var(--bg-white); text-align: center; padding: 0; border-radius: 4px;
  overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.svc-img { overflow: hidden; }
.svc-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-card h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 1.3rem;
  color: var(--text-primary); margin: 20px 24px 8px;
}
.svc-card p { font-size: .88rem; color: var(--text-body); line-height: 1.6; padding: 0 24px; margin-bottom: 12px; }
.svc-price { font-family: var(--font-mono); font-size: .82rem; color: var(--accent); display: block; padding: 0 24px 24px; }
.services-cta { text-align: center; margin-top: 48px; }

/* ═══ WHY GLAMHOT ═══ */
#why { padding: 100px 0; background: var(--bg-dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }
.why-copy .section-heading { margin-bottom: 24px; }
.why-features { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.why-feat {
  display: flex; gap: 12px; align-items: flex-start; font-size: .92rem;
  color: rgba(255,255,255,.78); line-height: 1.6;
}
.why-feat span:first-child { color: var(--accent); font-weight: 600; flex-shrink: 0; }

/* ═══ GALLERY ═══ */
#gallery { padding: 100px 0; background: var(--bg-cream); }
.gallery-masonry {
  columns: 4; column-gap: 16px;
}
.gal-item {
  break-inside: avoid; margin-bottom: 16px; position: relative; overflow: hidden;
  border-radius: 4px; cursor: pointer;
}
.gal-item img { width: 100%; display: block; transition: transform .5s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0; background: rgba(26,26,26,.4);
  display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity .3s;
}
.gal-overlay span {
  font-family: var(--font-display); font-size: 1rem; color: #fff;
  font-weight: 500; letter-spacing: .04em;
}
.gal-item:hover .gal-overlay { opacity: 1; }

/* ═══ TESTIMONIALS ═══ */
#reviews { padding: 100px 0; background: var(--bg-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.review-card {
  background: var(--bg-cream); border-radius: 6px; padding: 36px 32px;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.review-stars { color: var(--accent); font-size: .85rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--text-primary); line-height: 1.7; border: none; margin: 0; padding: 0;
}
.review-author { font-weight: 500; font-size: .88rem; color: var(--text-primary); margin-top: 20px; }
.review-service { font-size: .78rem; color: var(--text-light); margin-top: 2px; }

/* ═══ BOOKING ═══ */
#booking { padding: 100px 0; background: var(--bg-dark); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.booking-copy .section-heading { margin-bottom: 16px; }
.booking-desc { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.7; margin-bottom: 24px; }
.booking-hours { margin: 24px 0; }
.booking-hours p { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 4px; }
.booking-phone {
  display: inline-block; font-family: var(--font-display); font-style: italic;
  font-size: 1.6rem; color: var(--accent); margin-top: 16px; transition: color .2s;
}
.booking-phone:hover { color: var(--accent-hover); }
.booking-sub { display: block; font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 4px; }
.booking-wa { display: inline-block; font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 14px; transition: color .2s; }
.booking-wa:hover { color: var(--accent); text-decoration: underline; }
.form-box { background: var(--bg-cream); border-radius: 8px; padding: 40px 36px; }
.form-title {
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem;
  color: var(--text-primary); margin-bottom: 28px;
}
#bookingForm input, #bookingForm select, #bookingForm textarea {
  width: 100%; margin-bottom: 18px; background: transparent;
  border: none; border-bottom: 1px solid var(--border); font-family: var(--font-ui);
  font-size: .88rem; color: var(--text-primary); padding: 10px 0; outline: none;
  transition: border-color .3s; border-radius: 0; -webkit-appearance: none;
}
#bookingForm input:focus, #bookingForm select:focus, #bookingForm textarea:focus {
  border-bottom-color: var(--accent);
}
#bookingForm textarea { resize: vertical; min-height: 44px; }
.btn-submit {
  width: 100%; height: 48px; background: var(--text-primary); color: var(--bg-white);
  border: none; font-family: var(--font-ui); font-weight: 500; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: all .25s;
}
.btn-submit:hover { background: var(--accent); }
.form-success { text-align: center; padding: 40px 0; }
.success-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--text-primary); margin-bottom: 10px; }
.form-success p { font-size: .88rem; color: var(--text-body); margin-bottom: 16px; }
.form-success a { color: var(--accent); font-size: .88rem; }

/* ═══ LOCATION ═══ */
#contact { padding: 80px 0; background: var(--bg-cream); }
.location-grid { display: grid; grid-template-columns: 45fr 55fr; gap: 60px; align-items: start; }
.location-heading { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--text-primary); margin-bottom: 28px; }
.loc-item { display: flex; gap: 12px; margin-bottom: 18px; font-size: .92rem; color: var(--text-body); line-height: 1.6; }
.loc-item a { color: var(--accent); transition: color .2s; }
.loc-item a:hover { color: var(--text-primary); }

/* ═══ FOOTER ═══ */
footer { background: var(--bg-white); padding: 60px 0 28px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.footer-logo { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--text-primary); letter-spacing: .06em; display: block; }
.footer-tagline { font-size: .85rem; color: var(--text-light); margin-top: 8px; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { color: var(--text-light); transition: color .2s; }
.footer-social a:hover { color: var(--accent); }
.footer-links, .footer-contact { display: flex; flex-direction: column; }
.footer-links h4, .footer-contact h4 {
  font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-primary); margin-bottom: 16px;
}
.footer-links a { font-size: .88rem; color: var(--text-body); margin-bottom: 8px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { font-size: .85rem; color: var(--text-body); line-height: 1.6; margin-bottom: 8px; }
.footer-contact a { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); margin-top: 40px; padding-top: 20px;
  font-size: .75rem; color: var(--text-light); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--accent); transition: color .2s; }
.footer-bottom a:hover { color: var(--text-primary); }

/* ═══ STICKY CTA ═══ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; z-index: 999;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,.1);
}
.sticky-cta a { color: #fff; font-size: .82rem; font-weight: 500; letter-spacing: .08em; padding: 10px 20px; }
.sticky-cta a:last-child { background: var(--accent); border-radius: 4px; }

/* ═══ ANIMATIONS ═══ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═══ */

/* Tablet */
@media (max-width: 1024px) {
  .container { width: 92vw; }
  #intro { padding: 72px 0; }
  #services, #gallery, #reviews { padding: 72px 0; }
  #why, #booking { padding: 72px 0; }
  .intro-grid { gap: 48px; }
  .why-grid { gap: 48px; }
  .booking-grid { gap: 48px; }
  .section-header { margin-bottom: 44px; }
}

/* Tablet-portrait & small laptops */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .nav-call { display: flex; font-size: 1.2rem; padding: 8px; }
  .nav-cta { display: none; }
  #nav { height: 60px; }
  .nav-inner { height: 60px; }
  .mobile-nav { top: 60px; }
  #hero { margin-top: 60px; height: 65vh; min-height: 400px; }
  .hero-content { max-width: 600px; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-copy { text-align: center; }
  .intro-text { max-width: 100%; margin: 0 auto 28px; }
  .intro-image { order: -1; }
  .intro-image img { aspect-ratio: 16/10; max-height: 380px; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .svc-card h3 { font-size: 1.15rem; margin: 16px 16px 6px; }
  .svc-card p { font-size: .82rem; padding: 0 16px; margin-bottom: 8px; }
  .svc-price { padding: 0 16px 16px; font-size: .78rem; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-image img { aspect-ratio: 16/9; max-height: 360px; }
  .gallery-masonry { columns: 3; column-gap: 10px; }
  .gal-item { margin-bottom: 10px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 28px 24px; }
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-copy { text-align: center; }
  .location-grid { grid-template-columns: 1fr; gap: 24px; }
  .location-grid .location-map { order: -1; }
  .location-map iframe { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  #contact { padding: 60px 0; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { width: 94vw; }
  #nav { height: 56px; }
  .nav-inner { height: 56px; padding: 0 4px; }
  .nav-logo { font-size: 1.25rem; }
  .mobile-nav { top: 56px; padding: 24px 0; gap: 16px; }
  #hero { margin-top: 56px; height: 55vh; min-height: 340px; }
  .hero-subtitle { font-size: .7rem; letter-spacing: .15em; margin-bottom: 14px; }
  .hero-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 24px; line-height: 1.25; }
  .hero-btn { font-size: .75rem; padding: 12px 28px; }
  .hero-dots { bottom: 16px; }
  .hero-dot { width: 8px; height: 8px; }
  #intro { padding: 56px 0; }
  .intro-heading { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .intro-text { font-size: .88rem; }
  #services, #gallery, #reviews { padding: 56px 0; }
  #why, #booking { padding: 56px 0; }
  .section-label { font-size: .68rem; }
  .section-heading { font-size: clamp(1.5rem, 5vw, 2rem); }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .svc-img img { aspect-ratio: 16/10; }
  .svc-card h3 { font-size: 1.2rem; margin: 16px 20px 6px; }
  .svc-card p { padding: 0 20px; font-size: .85rem; }
  .svc-price { padding: 0 20px 20px; }
  .services-cta { margin-top: 32px; }
  .why-copy { text-align: left; }
  .why-image img { aspect-ratio: 4/3; }
  .why-feat { font-size: .85rem; }
  .gallery-masonry { columns: 2; column-gap: 8px; }
  .gal-item { margin-bottom: 8px; border-radius: 3px; }
  .gal-overlay { padding: 10px; }
  .gal-overlay span { font-size: .82rem; }
  .review-card blockquote { font-size: .95rem; }
  .booking-phone { font-size: 1.3rem; }
  .form-box { padding: 24px 18px; }
  .form-title { font-size: 1.3rem; margin-bottom: 20px; }
  #bookingForm input, #bookingForm select, #bookingForm textarea { font-size: 16px; margin-bottom: 14px; }
  .btn-submit { height: 46px; font-size: .8rem; }
  .location-heading { font-size: 1.6rem; }
  .loc-item { font-size: .85rem; }
  .location-map iframe { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; margin-top: 28px; padding-top: 16px; }
  .btn-outline, .btn-outline-light, .btn-solid { padding: 12px 24px; font-size: .78rem; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .mobile-nav a { padding: 6px 0; min-height: 44px; display: flex; align-items: center; }
}

/* Small phones */
@media (max-width: 380px) {
  .container { width: 96vw; }
  #hero { height: 50vh; min-height: 300px; }
  .hero-heading { font-size: 1.5rem; }
  .hero-subtitle { font-size: .65rem; }
  .nav-logo { font-size: 1.1rem; }
  .section-heading { font-size: 1.4rem; }
  .intro-heading { font-size: 1.5rem; }
  .svc-card h3 { font-size: 1.1rem; }
  .review-card { padding: 22px 18px; }
  .review-card blockquote { font-size: .88rem; }
}

/* Large desktop */
@media (min-width: 1440px) {
  .container { width: min(1320px, 88vw); }
  #hero { height: 88vh; }
  .hero-heading { font-size: 4.2rem; }
  .intro-grid { gap: 100px; }
  .services-grid { gap: 36px; }
}
