/* Four Seasons Skin Care and Spa — modern static site */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --color-cream: #faf8f4;
  --color-cream-dark: #f0ebe3;
  --color-sage: #6b7f6a;
  --color-sage-dark: #4d5e4c;
  --color-forest: #2a3428;
  --color-gold: #b8956b;
  --color-gold-light: #d4b896;
  --color-text: #3a3632;
  --color-text-muted: #6b6560;
  --color-white: #ffffff;
  --color-border: rgba(42, 52, 40, 0.1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(42, 52, 40, 0.06);
  --shadow-md: 0 8px 32px rgba(42, 52, 40, 0.1);
  --shadow-lg: 0 20px 60px rgba(42, 52, 40, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1120px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-sage-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-forest);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-forest);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-forest);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-sage-dark);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-forest);
  border-color: var(--color-forest);
}

.btn-outline:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-forest);
}

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-sage), var(--color-forest));
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-forest);
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.nav-link--active,
.nav-link:hover {
  color: var(--color-sage-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-forest);
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-nav {
    margin-top: 0.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(107, 127, 106, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(184, 149, 107, 0.12), transparent),
    linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-yelp {
  margin-top: 1.75rem;
}

/* Yelp badge */
.yelp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.yelp-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.yelp-badge-logo {
  flex-shrink: 0;
  height: 38px;
  width: auto;
}

.yelp-badge-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.yelp-badge-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.yelp-badge-stars {
  display: inline-flex;
  gap: 0.1rem;
  line-height: 1;
}

.yelp-star {
  font-size: 1rem;
  line-height: 1;
}

.yelp-star--full {
  color: #ff1a1a;
}

.yelp-star--partial {
  background: linear-gradient(
    90deg,
    #ff1a1a var(--fill, 50%),
    #e0dbd4 var(--fill, 50%)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.yelp-star--empty {
  color: #e0dbd4;
}

.yelp-badge-score {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-forest);
}

.yelp-badge-meta {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.yelp-badge-wordmark {
  font-weight: 700;
  color: #ff1a1a;
  letter-spacing: 0.02em;
}

.yelp-badge-reviews::before {
  content: "·";
  margin-right: 0.4rem;
  color: var(--color-text-muted);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual-inner {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, rgba(42, 52, 40, 0.25), transparent 50%),
    url("https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=800&q=80&auto=format&fit=crop") center / cover;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-height: 360px;
    aspect-ratio: 16 / 10;
  }
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section--alt {
  background: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: inherit;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--color-cream-dark);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  flex: 1;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.service-card-link {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-sage-dark);
}

/* Credentials */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.credential-pill {
  padding: 0.5rem 1rem;
  background: var(--color-cream-dark);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-forest);
}

/* CTA band */
.cta-band {
  padding: 3rem 0;
  background: var(--color-forest);
  color: var(--color-white);
  text-align: center;
}

.cta-band h2 {
  color: var(--color-white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.cta-band .btn-primary {
  background: var(--color-gold);
  color: var(--color-forest);
}

/* Page header */
.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--color-cream-dark), var(--color-cream));
  border-bottom: 1px solid var(--color-border);
}

.page-hero .breadcrumb {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

/* Service detail */
.service-tier {
  margin-bottom: 3rem;
}

.tier-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-sage);
  margin-bottom: 1.25rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

.treatment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.treatment-item {
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.treatment-item h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-forest);
}

.treatment-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.note-box {
  padding: 1.25rem 1.5rem;
  background: var(--color-cream-dark);
  border-left: 4px solid var(--color-sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-size: 0.95rem;
}

/* Pricing tables */
.price-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.price-table th {
  background: var(--color-cream-dark);
  font-weight: 600;
  color: var(--color-forest);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table .price {
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

.price-table caption {
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-forest);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-portrait {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(107, 127, 106, 0.3), transparent),
    var(--color-cream-dark);
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  border: 1px dashed var(--color-border);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-left: 2px solid var(--color-sage);
}

.timeline li {
  position: relative;
  padding: 0 0 1.5rem 1.5rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sage);
}

.timeline strong {
  display: block;
  color: var(--color-forest);
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-card {
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-white);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Specials */
.promo-card {
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-white), var(--color-cream-dark));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.promo-card h3 {
  color: var(--color-gold);
}

/* Footer */
.site-footer {
  background: var(--color-forest);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.5rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 0.5rem;
}

.footer-tagline,
.footer-address,
.footer-copy {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0 0 0.5rem;
}

.footer-phone {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold-light);
  text-decoration: none;
  margin-top: 0.5rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.footer-hours,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-hours li,
.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a,
.site-footer a:not(.btn) {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-2 {
  margin-bottom: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
