/* Emerald & Linen — Irish beauty salon landing */
:root {
  --cream: #faf8f5;
  --paper: #ffffff;
  --ink: #1a1f16;
  --ink-soft: #3d4638;
  --emerald: #0d6b4a;
  --emerald-deep: #094a34;
  --clover: #1e8f5f;
  --gold: #c9a227;
  --mist: rgba(250, 248, 245, 0.92);
  --shadow: rgba(26, 31, 22, 0.08);
  --radius-lg: 1.25rem;
  --radius: 0.75rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
}

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

a {
  color: var(--emerald);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--emerald-deep);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--emerald);
  color: white;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--mist);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 107, 74, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--emerald);
  color: white;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--emerald);
  color: white;
  box-shadow: 0 6px 20px rgba(13, 107, 74, 0.25);
}

.btn-primary:hover {
  background: var(--emerald-deep);
  color: white;
  box-shadow: 0 8px 28px rgba(13, 107, 74, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}

.btn-outline:hover {
  background: rgba(13, 107, 74, 0.08);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  min-height: min(92vh, 720px);
  display: grid;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 5rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(250, 248, 245, 0.97) 0%,
    rgba(250, 248, 245, 0.88) 38%,
    rgba(250, 248, 245, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(280px, 420px);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.4vw, 3.65rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.125rem;
  max-width: 36ch;
  margin: 0 0 1.75rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.hero-meta strong {
  color: var(--ink);
}

.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px var(--shadow);
  border: 1px solid rgba(13, 107, 74, 0.1);
}

.hero-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.hero-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.hero-card-body p {
  margin: 0;
  font-size: 0.9375rem;
}

/* Sections */
.section {
  padding-block: clamp(3.25rem, 7vw, 5rem);
}

.section-light {
  background: var(--paper);
}

.section-tint {
  background: linear-gradient(
    180deg,
    rgba(13, 107, 74, 0.04) 0%,
    transparent 48%
  );
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  font-size: 1.0625rem;
}

/* Services */
.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(26, 31, 22, 0.08);
  box-shadow: 0 8px 24px rgba(26, 31, 22, 0.04);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 107, 74, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.9625rem;
}

/* Split */
.split {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 44px var(--shadow);
  border: 1px solid rgba(13, 107, 74, 0.1);
}

.split-img img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.split-body .section-kicker {
  text-align: left;
}

.split-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: var(--ink);
  margin: 0 0 1rem;
}

.split-body ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
}

.split-body li {
  margin-bottom: 0.5rem;
}

/* Gallery */
.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 140px);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 120px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

/* Testimonials */
.quotes {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote {
  background: var(--paper);
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 31, 22, 0.08);
}

.quote blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
}

.quote footer {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.quote footer strong {
  color: var(--ink);
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(13, 107, 74, 0.25);
  background: rgba(255, 255, 255, 0.6);
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--emerald);
  line-height: 1;
}

.trust-item span {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--clover) 55%, var(--emerald) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3rem);
  text-align: center;
  box-shadow: 0 20px 50px rgba(13, 107, 74, 0.35);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  margin: 0 0 0.5rem;
  color: white;
}

.cta-band p {
  margin: 0 auto 1.35rem;
  max-width: 46ch;
  opacity: 0.95;
}

.cta-band .btn-primary {
  background: white;
  color: var(--emerald-deep);
  box-shadow: none;
}

.cta-band .btn-primary:hover {
  background: var(--cream);
}

/* Footer / Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 31, 22, 0.1);
  background: white;
}

.contact-card h3 {
  font-family: var(--font-display);
  margin-top: 0;
  font-size: 1.35rem;
  color: var(--ink);
}

address {
  font-style: normal;
}

.site-footer {
  padding: 2rem 0 2.25rem;
  border-top: 1px solid rgba(26, 31, 22, 0.08);
  font-size: 0.875rem;
  color: var(--ink-soft);
  background: rgba(250, 248, 245, 0.5);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner a {
  color: inherit;
}

/* FAB */
.book-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 60;
}

.book-fab a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.45);
}

.book-fab a:hover {
  color: var(--ink);
  filter: brightness(1.05);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile nav */
@media (max-width: 799px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 5vw 1rem;
    background: white;
    border-bottom: 1px solid rgba(13, 107, 74, 0.12);
    box-shadow: 0 12px 28px rgba(26, 31, 22, 0.08);
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(26, 31, 22, 0.06);
  }

  .nav-links .btn {
    margin-top: 0.75rem;
    text-align: center;
  }

  .book-fab {
    bottom: 0.85rem;
    right: 0.85rem;
  }
}
