/* ------------------------------------------------------------------
   Nails by Leah Andrine — simple, modern, 2026
   warm sand + ink + camel
------------------------------------------------------------------ */

:root {
  --bg:           #f7f2e9;
  --bg-alt:       #ede4d3;
  --card:         #ffffff;
  --ink:          #181410;
  --ink-soft:     #4a3f37;
  --ink-mute:     #877a6e;
  --accent:       #9c7142;
  --accent-deep:  #7a5530;
  --accent-soft:  #ecdcc3;
  --line:         rgba(24, 20, 16, 0.10);
  --line-soft:    rgba(24, 20, 16, 0.06);
  --shadow-sm:    0 1px 2px rgba(24, 20, 16, 0.04), 0 6px 16px -10px rgba(24, 20, 16, 0.12);
  --shadow-md:    0 2px 6px rgba(24, 20, 16, 0.05), 0 20px 40px -22px rgba(24, 20, 16, 0.20);
  --radius:       18px;
  --radius-sm:    12px;
  --x-pad:        clamp(20px, 4vw, 56px);

  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--accent); color: #fff; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--x-pad);
}

/* =========================================================
   Typography
========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4a8a3f;
  box-shadow: 0 0 0 3.5px rgba(74, 138, 63, 0.18);
}

.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h1 em {
  font-style: italic;
  color: var(--accent);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-top: 10px;
}

.lede {
  margin-top: 14px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
}
.lede a { color: var(--accent); border-bottom: 1px solid rgba(156, 113, 66, 0.3); }
.lede a:hover { border-bottom-color: var(--accent); }

.section-head { margin-bottom: 48px; }

/* =========================================================
   Buttons
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 15.5px; }

.btn span[aria-hidden] {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover span[aria-hidden] { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 14px -8px rgba(24, 20, 16, 0.5);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 10px 22px -10px rgba(122, 85, 48, 0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(24, 20, 16, 0.18);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  padding: 6px 0;
  border-bottom: 1px solid rgba(156, 113, 66, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-top: 16px;
  align-self: flex-start;
}
.btn-link:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.btn-link span[aria-hidden] {
  transition: transform 0.25s ease;
  display: inline-block;
}
.btn-link:hover span[aria-hidden] { transform: translate(3px, -3px); }

/* =========================================================
   Header
========================================================= */

.hd {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: saturate(170%) blur(10px);
  -webkit-backdrop-filter: saturate(170%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px var(--x-pad);
  max-width: 1280px;
  margin: 0 auto;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.logo-sub {
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hd-nav { display: none; gap: 28px; align-items: center; }
.hd-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.18s ease;
  padding: 6px 0;
}
.hd-nav a:hover { color: var(--ink); }

.hd-cta { display: none; }

@media (min-width: 880px) {
  .hd-nav { display: flex; }
  .hd-cta { display: inline-flex; }
}

/* =========================================================
   Hero — centered, minimalist
========================================================= */

.hero {
  padding: 80px var(--x-pad) 96px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .hero { padding: 120px var(--x-pad) 140px; }
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: 28px;
}

.h1 { max-width: 900px; margin: 0 auto; }

.hero-lede {
  margin: 28px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.hero-images {
  margin: 56px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 720px) {
  .hero-images { gap: 18px; margin-top: 72px; }
}
.hero-images figure {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
  box-shadow: var(--shadow-md);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-images figure:nth-child(2) {
  transform: translateY(20px);
}
@media (min-width: 720px) {
  .hero-images figure:nth-child(1),
  .hero-images figure:nth-child(3) { transform: translateY(-12px); }
  .hero-images figure:nth-child(2) { transform: translateY(12px); }
}
.hero-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-images figure:hover img { transform: scale(1.05); }

.hero-foot {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-mute);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.ig-link:hover { color: var(--ink); border-color: var(--ink); }

/* =========================================================
   Sections shared
========================================================= */

section { padding: 80px 0; }

/* =========================================================
   Services
========================================================= */

.services {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}
.card p {
  color: var(--ink-soft);
  font-size: 15px;
}
.card-meta {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =========================================================
   Pricing
========================================================= */

.pricing { background: var(--bg-alt); }

.price-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px clamp(20px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 880px) {
  .price-groups {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 44px clamp(28px, 4vw, 56px);
  }
}

.price-group-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.price-list { list-style: none; }
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.price-list li:last-child { border-bottom: none; }

.price-name {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  flex: 0 1 auto;
}
.price-sub {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mute);
  margin-top: 2px;
}
.price-dots {
  flex: 1 1 auto;
  height: 1em;
  border-bottom: 1px dotted rgba(24, 20, 16, 0.18);
  position: relative;
  top: -4px;
  min-width: 24px;
}
.price-amt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--accent);
  flex: 0 0 auto;
  white-space: nowrap;
}

.price-cta {
  margin-top: 36px;
  text-align: center;
}

/* =========================================================
   Gallery
========================================================= */

.gallery {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}

.gal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 680px) { .gal { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1024px) { .gal { grid-template-columns: repeat(4, 1fr); } }

.gal figure {
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}
.gal img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal figure:hover img { transform: scale(1.04); }

/* =========================================================
   Practical / Rules
========================================================= */

.practical {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}

.rules {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 760px) {
  .rules { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.rules li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.rules li:hover {
  border-color: var(--accent-soft);
  transform: translateY(-2px);
}
.rule-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.rules h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}
.rules p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.rules p strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   About
========================================================= */

.about { background: var(--bg-alt); }

.about-grid {
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 1.3fr 0.85fr;
    gap: 72px;
  }
}

.about-text p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 560px;
}
.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.about-card-key {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.about-card-val {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.about-card-sub {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* =========================================================
   Booking CTA card
========================================================= */

.booking {
  background: var(--bg);
  padding: 40px 0 100px;
}

.big-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "eb arr"
    "tt arr"
    "sub arr";
  gap: 6px 24px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  align-items: center;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: background 0.3s ease, transform 0.2s ease;
}
.big-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}
.big-cta-eb { grid-area: eb; font-size: 12.5px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(247, 242, 233, 0.65); }
.big-cta-tt {
  grid-area: tt;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.08;
  color: var(--bg);
  letter-spacing: -0.015em;
}
.big-cta-sub {
  grid-area: sub;
  margin-top: 4px;
  font-size: 14.5px;
  color: rgba(247, 242, 233, 0.7);
  max-width: 480px;
}
.big-cta-arrow {
  grid-area: arr;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}
.big-cta:hover .big-cta-arrow { transform: translateX(6px); background: var(--bg); }

/* =========================================================
   Footer
========================================================= */

.ft {
  background: var(--ink);
  color: var(--bg);
  padding: 56px 0 40px;
}
.ft-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 760px) {
  .ft-inner { grid-template-columns: 1fr auto 1fr; }
  .ft-nav { justify-self: center; }
  .ft-copy { justify-self: end; }
}

.ft-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--bg);
}
.ft-sub {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(247, 242, 233, 0.6);
}
.ft-nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14.5px; }
.ft-nav a { color: rgba(247, 242, 233, 0.78); transition: color 0.18s ease; }
.ft-nav a:hover { color: var(--bg); }
.ft-copy { font-size: 13px; color: rgba(247, 242, 233, 0.5); }

/* =========================================================
   Sticky mobile booking bar
========================================================= */

.mobile-book {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  box-shadow: 0 -10px 30px -10px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease;
}
.mobile-book:hover { background: var(--accent-deep); }
.mobile-book span[aria-hidden] {
  font-size: 18px;
  transition: transform 0.25s ease;
}
.mobile-book:hover span[aria-hidden] { transform: translateX(4px); }

@media (min-width: 880px) {
  .mobile-book { display: none; }
}
@media (max-width: 879px) {
  body { padding-bottom: 72px; }
}

/* =========================================================
   Reduced motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
