/* ============================================
   ClearSkin Laser Studio — Dark Elegance Theme
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --color-dark: #1a1a1a;
  --color-dark-warm: #2d2520;
  --color-gold: #d4af5e;
  --color-gold-light: #e8c98a;
  --color-cream: #f5e6d0;
  --color-pink: #e8d5d0;
  --color-white: #ffffff;
  --color-grey-light: #cccccc;
  --color-grey-dark: #444444;
  --color-grey-mid: #888888;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --nav-height: 100px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-grey-light);
  background-color: var(--color-dark);
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  color: var(--color-gold);
}

h2 {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav--transparent {
  background-color: transparent;
}

.nav--solid {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(212, 175, 94, 0.1);
}

.nav__logo img {
  height: 85px;
  width: auto;
}

.nav__logo .logo-full {
  display: block;
}

.nav__logo .logo-icon {
  display: none;
}

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

.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-gold);
}

.nav__book {
  display: none;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: all 0.3s ease;
}

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

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu Overlay */
.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 26, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav__overlay a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
  letter-spacing: 2px;
}

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

.nav__overlay .btn {
  margin-top: 1rem;
  font-size: 1rem;
  padding: 16px 48px;
}

/* --- Announcement Bar --- */
.announcement-bar {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  z-index: 998;
  background: rgba(45, 37, 32, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 94, 0.15);
  text-align: center;
  padding: 10px 1.5rem;
}

.announcement-bar p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin: 0;
}

.announcement-bar a {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-shop.jpg');
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(45, 37, 32, 0.80) 40%,
    rgba(58, 47, 40, 0.80) 60%,
    rgba(26, 26, 26, 0.90) 100%
  );
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(212, 175, 94, 0.06) 0%,
    transparent 70%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--color-grey-light);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.8;
}

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

/* --- Page Hero (interior pages) --- */
.page-hero {
  padding: 220px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-warm) 100%);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--color-grey-light);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.section--dark {
  background-color: var(--color-dark);
  --section-bg: #1a1a1a;
}

.section--warm {
  background-color: var(--color-dark-warm);
  --section-bg: #2d2520;
}

.section--light {
  background-color: var(--color-cream);
  color: var(--color-dark);
}

.section--light h2 { color: var(--color-dark); }
.section--light h3 { color: var(--color-dark); }
.section--light p { color: var(--color-grey-dark); }

.section--grey {
  background-color: #f0ebe6;
  color: var(--color-dark);
}

.section--grey h2 { color: var(--color-dark); }
.section--grey p { color: var(--color-grey-dark); }

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header p {
  color: var(--color-grey-mid);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Pillars (3-column) --- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
}

.pillar__icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.pillar__icon svg {
  stroke: var(--color-gold);
}

.pillar h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 500;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--color-grey-light);
  font-weight: 300;
}

/* --- Treatment Cards --- */
.treatment-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.treatment-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.treatment-card__image {
  order: -1;
  overflow: hidden;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .treatment-card__image {
    order: unset;
  }
  .treatment-card:nth-child(even) .treatment-card__image {
    order: 1;
  }
}

.treatment-card__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.treatment-card:hover .treatment-card__image img {
  transform: scale(1.03);
}

.treatment-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.treatment-card__content p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* --- About / Meet Sandi --- */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-snippet__image {
  order: -1;
}

@media (min-width: 768px) {
  .about-snippet__image {
    order: unset;
  }
}

.about-snippet__image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  max-width: 400px;
  margin: 0 auto;
}

.about-snippet__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--section-bg, #1a1a1a));
  pointer-events: none;
}

.about-snippet__image img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.about-snippet__content blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-gold-light);
  line-height: 1.8;
  border-left: 2px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.about-snippet__signature {
  font-style: italic;
  color: var(--color-gold);
  margin-top: 1rem;
}

/* --- Testimonials --- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial {
  padding: 2rem;
  border: 1px solid rgba(212, 175, 94, 0.15);
  border-radius: 4px;
}

.testimonial__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.testimonial__text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-grey-light);
  margin-bottom: 1rem;
}

.testimonial__stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 175, 94, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.faq-question__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-grey-light);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 80px 1.5rem;
  background: linear-gradient(135deg, var(--color-dark-warm) 0%, var(--color-dark) 100%);
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* --- Specs Grid --- */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.spec-item {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
}

.spec-item h3 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.spec-item p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.spec-item strong {
  color: var(--color-cream);
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.9));
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 300;
}

.gallery-item--placeholder {
  background: #2d2520;
  height: 250px;
  display: flex;
  align-items: flex-end;
  cursor: default;
}

.gallery-item--placeholder .gallery-item__caption {
  text-align: center;
  background: none;
  color: var(--color-grey-mid);
  position: static;
  padding: 1rem;
  width: 100%;
}

/* Gallery Placeholder */
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  background: var(--color-dark-warm);
  border: 1px dashed rgba(212, 175, 94, 0.3);
  border-radius: 4px;
  color: var(--color-grey-mid);
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
  padding: 1rem;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox__image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

/* --- Aftercare Timeline --- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gold);
  opacity: 0.3;
}

.timeline__item {
  padding-left: 60px;
  padding-bottom: 3rem;
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
}

.timeline__item h3 {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.timeline__item ul {
  list-style: none;
  padding: 0;
}

.timeline__item li {
  padding: 0.25rem 0;
  font-weight: 300;
  position: relative;
  padding-left: 1.25rem;
}

.timeline__item li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.5rem;
  top: 0.55rem;
}

/* --- Products Box --- */
.products-box {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 94, 0.2);
  border-radius: 4px;
  text-align: center;
}

.products-box h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.products-box ul {
  list-style: none;
  padding: 0;
}

.products-box li {
  padding: 0.5rem 0;
  font-weight: 300;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info__item {
  margin-bottom: 2rem;
}

.contact-info__item h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 300px;
}

.contact-map__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.contact-map__link img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: grayscale(0.8) brightness(0.8) contrast(1.1);
  transition: filter 0.3s ease;
}

.contact-map__link:hover img {
  filter: grayscale(0.5) brightness(0.9) contrast(1.1);
}

.contact-map__overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(26, 26, 26, 0.85);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 94, 0.3);
  transition: all 0.3s ease;
}

.contact-map__link:hover .contact-map__overlay {
  background: rgba(26, 26, 26, 0.95);
  border-color: var(--color-gold);
}

/* --- Equipment Feature --- */
.equipment-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.equipment-feature__image img {
  border-radius: 4px;
  max-width: 400px;
  margin: 0 auto;
}

.equipment-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.equipment-point h3 {
  font-size: 1.1rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.equipment-point p {
  font-weight: 300;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin: 2rem 0 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-dark);
  border-top: 1px solid rgba(212, 175, 94, 0.1);
  padding: 60px 0 30px;
}

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

.footer__brand img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--color-grey-mid);
  font-weight: 300;
}

.footer__nav h4,
.footer__contact h4,
.footer__legal h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer__nav ul,
.footer__legal ul {
  list-style: none;
}

.footer__nav li,
.footer__legal li {
  margin-bottom: 0.5rem;
}

.footer__nav a,
.footer__legal a,
.footer__contact a {
  color: var(--color-grey-light);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer__nav a:hover,
.footer__legal a:hover,
.footer__contact a:hover {
  color: var(--color-gold);
}

.footer__contact p {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 94, 0.1);
  font-size: 0.8rem;
  color: var(--color-grey-mid);
  font-weight: 300;
}

/* --- Payment Icons --- */
.footer__payments {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__payments-label {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-grey-mid);
}

.footer__payments-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-icon {
  height: 28px;
  width: auto;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-icon:hover {
  opacity: 1;
}

.payment-icon--afterpay {
  height: 20px;
  border-radius: 0;
}

/* --- Social Icons --- */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 94, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: var(--color-gold);
}

.social-links a:hover {
  border-color: var(--color-gold);
  background: rgba(212, 175, 94, 0.1);
  color: var(--color-gold-light);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
  stroke: var(--color-gold);
  transition: all 0.3s ease;
}

.social-links a:hover svg {
  fill: var(--color-gold-light);
  stroke: var(--color-gold-light);
}

/* --- Contact Form --- */
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form__field {
  margin-bottom: 1.5rem;
}

.contact-form__field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 94, 0.25);
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.contact-form__field textarea {
  resize: vertical;
}

@media (max-width: 767px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ==============================
   RESPONSIVE — Tablet (768px+)
   ============================== */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }

  .hero__bg {
    background-position: center center;
    background-size: cover;
  }

  .hero__title { font-size: 3.5rem; }
  .hero__subtitle { font-size: 1.1rem; }

  .pillars { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }

  .treatment-card {
    grid-template-columns: 1fr 1fr;
  }

  .about-snippet {
    grid-template-columns: 1fr 1fr;
  }

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

  .equipment-feature {
    grid-template-columns: 1fr 1fr;
  }

  .equipment-points {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ==============================
   RESPONSIVE — Desktop (1024px+)
   ============================== */
@media (min-width: 1024px) {
  .hero__title { font-size: 4rem; }

  .nav__links {
    display: flex;
  }

  .nav__book {
    display: inline-block;
  }

  .nav__hamburger {
    display: none;
  }


  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section {
    padding: 100px 0;
  }
}
