/* =============================================
   RIN NAILS — Global Stylesheet
   Production-grade · Semantic · Accessible
   ============================================= */

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

/* ============ CSS VARIABLES ============ */
:root {
  --cream:    #fcfbf9;
  --paper:    #ffffff;
  --charcoal: #657a57;
  --stone:    #939e82;
  --blush:    #debcb0;
  --rosewood: #cc7f3d;
  --sand:     #debcb0;
  --dark:     #1a1a1a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Montserrat', ui-sans-serif, system-ui, sans-serif;
  --shadow-soft:   0 10px 40px -10px rgba(101,122,87,0.15);
  --shadow-softer: 0 4px 20px -4px rgba(101,122,87,0.08);
  --shadow-lg:     0 20px 60px -10px rgba(101,122,87,0.2);
  --trans: all 0.3s ease;
  --radius-pill: 9999px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
::selection { background: var(--blush); color: var(--paper); }

/* ============ TYPOGRAPHY ============ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); line-height: 1.15; }

/* ============ LAYOUT ============ */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
main { flex-grow: 1; }

.section     { padding-block: 6rem; }
.section--lg { padding-block: 8rem; }
@media (min-width: 1024px) {
  .section     { padding-block: 8rem; }
  .section--lg { padding-block: 10rem; }
}
@media (max-width: 767px) {
  .section     { padding-block: 4rem; }
  .section--lg { padding-block: 5rem; }
}

/* Grids */
.grid-2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media (max-width: 1023px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 767px)  { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

/* Accessibility */
.sr-only {
  position: absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ============ UTILITIES ============ */
.text-rosewood { color: var(--rosewood); }
.text-stone    { color: var(--stone); }
.text-paper    { color: var(--paper); }
.bg-cream      { background-color: var(--cream); }
.bg-paper      { background-color: var(--paper); }
.bg-charcoal   { background-color: var(--charcoal); }
.shadow-soft   { box-shadow: var(--shadow-soft); }
.shadow-softer { box-shadow: var(--shadow-softer); }
.sticky-col    { position: sticky; top: 8rem; }

/* ============ SECTION LABEL ============ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--rosewood);
  flex-shrink: 0;
}
.section-label span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rosewood);
}
/* When used centered (display:flex override via inline style) */
.section-label[style*="justify-content:center"]::before,
.section-label[style*="justify-content: center"]::before {
  display: none;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--trans);
  white-space: nowrap;
}
.btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.btn-dark        { background: var(--charcoal); color: var(--paper); box-shadow: var(--shadow-soft); }
.btn-dark:hover       { background: var(--rosewood); }
.btn-outline     { background: transparent; border: 1px solid var(--sand); color: var(--charcoal); }
.btn-outline:hover    { border-color: var(--rosewood); color: var(--rosewood); }
.btn-ghost       { background: transparent; border: 1px solid var(--charcoal); color: var(--charcoal); }
.btn-ghost:hover      { background: var(--charcoal); color: var(--paper); }
.btn-rosewood    { background: var(--rosewood); color: var(--paper); }
.btn-rosewood:hover   { opacity: 0.9; }

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(147,158,130,0.3);
  transition: var(--trans);
}
.link-arrow:hover { color: var(--rosewood); border-color: var(--rosewood); }
.link-arrow svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--trans);
  padding: 1.5rem 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-softer);
  padding: 1rem 0;
}
.navbar__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 110;
  flex-shrink: 0;
}
.navbar__logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.navbar__logo-sub {
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  color: var(--rosewood);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.2rem;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar__item { position: relative; }
.navbar__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
  transition: color 0.3s;
  padding: 0.5rem 0;
  white-space: nowrap;
}
.navbar__link:hover,
.navbar__link.active { color: var(--rosewood); }
.navbar__chevron {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.navbar__item:hover .navbar__chevron { transform: rotate(180deg); }
.navbar__dropdown {
  position: absolute;
  top: 100%; left: 0;
  padding-top: 0.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 50;
  min-width: 200px;
}
.navbar__item:hover .navbar__dropdown { opacity: 1; visibility: visible; }
.navbar__dropdown-inner {
  background: var(--paper);
  border-radius: 1.5rem;
  border: 1px solid rgba(147,158,130,0.1);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
}
.navbar__dropdown a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--stone);
  transition: var(--trans);
  white-space: nowrap;
}
.navbar__dropdown a:hover { color: var(--rosewood); background: var(--cream); }
.navbar__cta {
  padding: 0.625rem 1.5rem;
  background: var(--charcoal);
  color: var(--paper);
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar__cta:hover { background: var(--rosewood); color: var(--paper); }
.navbar__toggle {
  display: none;
  z-index: 110;
  color: var(--charcoal);
  padding: 0.25rem;
}
.navbar__toggle svg {
  width: 24px; height: 24px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
@media (max-width: 1023px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__toggle { display: block; }
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 8rem 2rem 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.76,0,0.24,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}
.mobile-menu__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--charcoal);
  transition: color 0.3s;
  line-height: 1;
}
.mobile-menu__link:hover { color: var(--rosewood); }
.mobile-menu__chevron { color: var(--charcoal); }
.mobile-menu__chevron svg {
  width: 28px; height: 28px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.3s;
}
.mobile-menu__chevron.open svg { transform: rotate(180deg); }
.mobile-menu__sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  padding-left: 1rem;
}
.mobile-menu__sub.open { max-height: 300px; }
.mobile-menu__sub a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--stone);
  padding: 0.75rem 1rem;
  border-left: 2px solid rgba(204,127,61,0.3);
  margin-top: 0.5rem;
  transition: color 0.3s;
}
.mobile-menu__sub a:hover { color: var(--rosewood); }
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(147,158,130,0.2);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.mobile-menu__contact p {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rosewood);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.mobile-menu__contact a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.25rem;
}
.mobile-menu__contact span { font-size: 0.75rem; color: var(--stone); }
.mobile-menu__cta-btn {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}
.mobile-menu__cta-btn:hover { background: var(--rosewood); }
.mobile-menu__cta-btn svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 5rem 0 3rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3,1fr);
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) { .footer__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 639px)  {
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__socials { justify-content: center; }
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--paper);
  display: block;
  margin-bottom: 0.5rem;
}
.footer__brand-tagline {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: var(--blush);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}
.footer__socials { display: flex; gap: 0.75rem; }
.footer__social-link {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(222,188,176,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand);
  transition: var(--trans);
}
.footer__social-link:hover {
  background: var(--rosewood);
  border-color: var(--rosewood);
  color: var(--paper);
}
.footer__social-link svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.footer__col h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--sand);
  line-height: 1.6;
}
.footer__col ul a { color: var(--sand); transition: color 0.3s; }
.footer__col ul a:hover { color: var(--paper); }
.footer__hours { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer__copyright {
  border-top: 1px solid rgba(222,188,176,0.15);
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(222,188,176,0.5);
  text-align: center;
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============ HERO ============ */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 5rem;
  }
}
.hero-inner__text { width: 100%; }
@media (min-width: 1024px) { .hero-inner__text { flex: 1; } }

.hero-inner__visual {
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .hero-inner__visual {
    flex: 0 0 40%;
    max-width: none;
    margin-inline: 0;
  }
}
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--paper);
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.hero-float-card__icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(222,188,176,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--rosewood);
  flex-shrink: 0;
}
.hero-float-card__icon svg { width: 24px; height: 24px; fill: currentColor; }
.hero-float-card__score {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}
.hero-float-card__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  white-space: nowrap;
}
@media (max-width: 767px) { .hero-float-card { display: none; } }

/* ============ PILL IMAGE ============ */
.pill-img {
  aspect-ratio: 2/3;
  border-radius: var(--radius-pill);
  padding: 0.5rem;
  border: 1px solid rgba(147,158,130,0.2);
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s;
}
.pill-img:hover { border-color: rgba(204,127,61,0.5); }
.pill-img__inner {
  border-radius: var(--radius-pill);
  overflow: hidden;
  height: 100%;
}
.pill-img__inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}
.pill-img:hover .pill-img__inner img { transform: scale(1.08); }
.pill-img__overlay {
  position: absolute; inset: 0;
  background: rgba(101,122,87,0.08);
  transition: background 0.5s;
  border-radius: var(--radius-pill);
  pointer-events: none;
}
.pill-img:hover .pill-img__overlay { background: transparent; }
.pill-img__fab {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 1rem);
  width: 3rem; height: 3rem;
  background: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: all 0.4s;
  box-shadow: var(--shadow-soft);
  pointer-events: none;
}
.pill-img:hover .pill-img__fab { opacity: 1; transform: translate(-50%, 0); }
.pill-img__fab svg {
  width: 18px; height: 18px;
  stroke: var(--rosewood); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ============ FEATURE CARD ============ */
.card-feature {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2rem;
  background: var(--cream);
  border: 1px solid rgba(147,158,130,0.1);
  transition: box-shadow 0.3s;
}
.card-feature:hover { box-shadow: var(--shadow-soft); }
.card-feature__icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  color: var(--rosewood);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-softer);
}
.card-feature__icon svg {
  width: 28px; height: 28px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}

/* ============ SERVICE CARD ============ */
.card-service { display: flex; flex-direction: column; cursor: pointer; }
.card-service__text { text-align: center; padding-inline: 1rem; margin-top: 2rem; }
.card-service__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.card-service:hover .card-service__title { color: var(--rosewood); }
.card-service__desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============ SCROLL ROW ============ */
/* Mobile: horizontal scroll */
.scroll-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1.5rem;
  margin-inline: -1.5rem;
  padding-inline: 1.5rem;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row > * {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: min(300px, 80vw);
}

/* Desktop: grid */
@media (min-width: 768px) {
  .scroll-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }
  .scroll-row > * { width: auto; }
  /* 4-column variant */
  .scroll-row--4 { grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .scroll-row--4 { grid-template-columns: repeat(2,1fr); }
}

/* ============ PRICING ITEMS ============ */
.price-item { margin-bottom: 1.75rem; }
.price-item__row {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.4rem;
  gap: 0;
}
.price-item__name {
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 1;
  min-width: 0;
  word-break: break-word;
  line-height: 1.4;
}
.price-item__dots {
  flex-grow: 1;
  flex-shrink: 0;
  border-bottom: 1px dotted rgba(147,158,130,0.4);
  margin-inline: 0.5rem;
  position: relative;
  top: -0.2rem;
  min-width: 0.5rem;
}
.price-item__price {
  font-weight: 600;
  color: var(--rosewood);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.875rem;
}
.price-item__desc {
  font-size: 0.8125rem;
  color: var(--stone);
  font-style: italic;
  line-height: 1.5;
}

/* ============ STARS ============ */
.stars { display: flex; gap: 0.25rem; color: var(--rosewood); }
.stars svg { width: 14px; height: 14px; fill: currentColor; }

/* ============ REVIEW CARD ============ */
.review-card {
  background: var(--cream);
  border-radius: 2.5rem;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  border: 1px solid rgba(147,158,130,0.12);
}
.review-card__avatar {
  position: absolute;
  top: -2.5rem; left: 2rem;
  width: 5rem; height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--paper);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__quote {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(204,127,61,0.12);
}
.review-card__body { padding-top: 2rem; }
.review-card__text {
  color: var(--stone);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-style: italic;
  font-size: 0.9375rem;
  margin-top: 1.5rem;
}
.review-card__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
}
.review-card__role {
  font-size: 0.625rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

/* ============ GALLERY ============ */
.gallery-grid { columns: 2; column-gap: 1rem; }
@media (min-width: 640px)  { .gallery-grid { columns: 3; column-gap: 1.25rem; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; column-gap: 1.5rem; } }

.gallery-item {
  break-inside: avoid;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  cursor: zoom-in;
}
@media (min-width: 640px)  { .gallery-item { margin-bottom: 1.25rem; } }
@media (min-width: 1024px) { .gallery-item { margin-bottom: 1.5rem; border-radius: 2rem; } }
.gallery-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(101,122,87,0.3);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  transform: translateY(1rem);
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-item__overlay-icon { transform: translateY(0); }
.gallery-item__overlay-icon svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--paper);
  transition: color 0.3s;
  padding: 0.5rem;
}
.lightbox__close:hover { color: var(--rosewood); }
.lightbox__close svg {
  width: 32px; height: 32px;
  stroke: currentColor; fill: none; stroke-width: 2;
}
.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 1rem;
}
.lightbox__hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

/* ============ ARTICLE CARD ============ */
.article-card { display: flex; flex-direction: column; cursor: pointer; }
.article-card__img {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 9999px 9999px 3rem 3rem;
  padding: 0.5rem;
  border: 1px solid rgba(147,158,130,0.2);
  transition: border-color 0.4s;
  overflow: hidden;
}
.article-card:hover .article-card__img { border-color: rgba(204,127,61,0.4); }
.article-card__img-inner {
  border-radius: 9999px 9999px 2.5rem 2.5rem;
  overflow: hidden;
}
.article-card__img-inner img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.9s;
}
.article-card:hover .article-card__img-inner img { transform: scale(1.05); }
.article-card__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.article-card__date { font-size: 0.75rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.1em; }
.article-card__meta-line { width: 3rem; height: 1px; background: rgba(147,158,130,0.3); }
.article-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  transition: color 0.3s;
  line-height: 1.3;
}
.article-card:hover .article-card__title { color: var(--rosewood); }
.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(101,122,87,0.2);
  padding-bottom: 0.25rem;
  transition: color 0.3s, border-color 0.3s;
}
.article-card:hover .article-card__read { color: var(--rosewood); border-color: var(--rosewood); }
.article-card__read svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* ============ CONTACT ============ */
.contact-wrap {
  border-radius: 3rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .contact-wrap { flex-direction: row; } }
.contact-info {
  width: 100%;
  padding: 3rem 2rem;
  background: var(--paper);
}
@media (min-width: 768px)  { .contact-info { padding: 4rem; } }
@media (min-width: 1024px) { .contact-info { width: 50%; padding: 5rem; } }
.contact-img {
  width: 100%;
  min-height: 22rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .contact-img { width: 50%; min-height: auto; } }
.contact-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item__icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--rosewood);
  flex-shrink: 0;
  box-shadow: var(--shadow-softer);
  border: 1px solid rgba(147,158,130,0.1);
}
.contact-item__icon svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-item__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}
.contact-item__text { font-size: 0.875rem; color: var(--stone); line-height: 1.6; }

/* ============ TABS ============ */
.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.tabs__btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  background: var(--paper);
  color: var(--stone);
}
.tabs__btn:hover { background: var(--cream); }
.tabs__btn.active {
  background: var(--charcoal);
  color: var(--paper);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.tabs__panel { display: none; }
.tabs__panel.active { display: block; animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(1.25rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ SERVICE GRID ITEM ============ */
.service-grid-item {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--cream);
  border: 1px solid transparent;
  transition: var(--trans);
  cursor: pointer;
}
.service-grid-item:hover {
  background: rgba(204,127,61,0.05);
  border-color: rgba(204,127,61,0.1);
}
.service-grid-item__header { display: flex; align-items: flex-start; }
.service-grid-item__dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
  background: rgba(204,127,61,0.4);
  margin-top: 0.5rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  transition: background 0.3s;
}
.service-grid-item:hover .service-grid-item__dot { background: var(--rosewood); }
.service-grid-item h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
  transition: color 0.3s;
}
.service-grid-item:hover h3 { color: var(--rosewood); }
.service-grid-item p {
  font-size: 0.8125rem;
  color: rgba(147,158,130,0.8);
  line-height: 1.6;
  padding-left: 1.125rem;
}

/* ============ COMBO CARD ============ */
.combo-card {
  background: var(--paper);
  border: 1px solid rgba(147,158,130,0.2);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-softer);
  position: relative;
}
.combo-card--popular {
  background: var(--charcoal);
  border-color: transparent;
  transform: translateY(-1rem);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 767px) { .combo-card--popular { transform: none; } }
.combo-card__badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%,-50%);
  background: var(--rosewood);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.combo-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.combo-card--popular .combo-card__title { color: var(--paper); }
.combo-card__price { text-align: center; margin-bottom: 1.5rem; }
.combo-card__price-old {
  font-size: 0.875rem;
  text-decoration: line-through;
  color: rgba(147,158,130,0.5);
  margin-right: 0.5rem;
}
.combo-card--popular .combo-card__price-old { color: rgba(255,255,255,0.4); }
.combo-card__price-new { font-size: 1.875rem; font-weight: 600; color: var(--rosewood); }
.combo-card__features { flex-grow: 1; display: flex; flex-direction: column; gap: 0.875rem; }
.combo-card__feature { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.combo-card__feature svg {
  width: 18px; height: 18px;
  stroke: var(--rosewood); fill: none; stroke-width: 2;
  flex-shrink: 0; margin-top: 0.125rem;
}
.combo-card--popular .combo-card__feature { color: rgba(255,255,255,0.9); }
.combo-card__extra { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.combo-card__extra.open { max-height: 500px; }
.combo-card__toggle {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--stone);
  transition: color 0.3s;
}
.combo-card--popular .combo-card__toggle { color: rgba(255,255,255,0.6); }
.combo-card__toggle svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.3s;
}
.combo-card__toggle.expanded svg { transform: rotate(180deg); }
.combo-card__cta {
  margin-top: 2rem;
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--trans);
  text-align: center;
  display: block;
}
.combo-card:not(.combo-card--popular) .combo-card__cta { background: var(--cream); color: var(--charcoal); }
.combo-card:not(.combo-card--popular) .combo-card__cta:hover { background: var(--charcoal); color: var(--paper); }
.combo-card--popular .combo-card__cta { background: var(--rosewood); color: white; }
.combo-card--popular .combo-card__cta:hover { opacity: 0.88; }

/* ============ PKG CARD ============ */
.pkg-card {
  background: var(--paper);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(147,158,130,0.1);
  box-shadow: var(--shadow-softer);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { box-shadow: var(--shadow-lg); }
.pkg-card__duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--cream);
  color: var(--rosewood);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.pkg-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.pkg-card__price { display: flex; align-items: flex-end; gap: 0.75rem; margin-bottom: 1.5rem; }
.pkg-card__price-main { font-size: 1.875rem; font-weight: 700; color: var(--charcoal); }
.pkg-card__price-old { font-size: 0.875rem; text-decoration: line-through; color: rgba(147,158,130,0.5); margin-bottom: 0.25rem; }
.pkg-card__features {
  flex-grow: 1;
  border-top: 1px solid rgba(147,158,130,0.1);
  padding-top: 1.5rem;
}
.pkg-card__feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(101,122,87,0.85);
}
.pkg-card__check {
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.125rem;
}
.pkg-card__check svg {
  width: 12px; height: 12px;
  stroke: var(--rosewood); fill: none; stroke-width: 2.5;
}
.pkg-card__cta {
  margin-top: 2rem; width: 100%; padding: 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
  transition: var(--trans);
}
.pkg-card__cta:hover { background: var(--charcoal); color: var(--paper); }

/* ============ TEAM CARD ============ */
.team-card { text-align: center; }
.team-card__img {
  aspect-ratio: 2/3;
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.team-card:hover .team-card__img img { transform: scale(1.05); }
.team-card__name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--charcoal); margin-bottom: 0.25rem; }
.team-card__role { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--stone); }

/* ============ VALUE CARD ============ */
.value-card {
  padding: 2.5rem;
  border-radius: 2rem;
  background: var(--paper);
  text-align: center;
  box-shadow: var(--shadow-softer);
  border: 1px solid rgba(147,158,130,0.08);
  transition: box-shadow 0.3s;
}
.value-card:hover { box-shadow: var(--shadow-soft); }
.value-card__icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--rosewood);
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.value-card__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.value-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1rem; color: var(--charcoal); }
.value-card p { font-size: 0.875rem; color: var(--stone); line-height: 1.7; }

/* ============ BASIC CARE CARD ============ */
.basic-card { display: flex; flex-direction: column; cursor: pointer; }
.basic-card__link { display: flex; flex-direction: column; height: 100%; }
.basic-card__pill { aspect-ratio: 2/3; }
.basic-card__text { text-align: center; padding-inline: 0.5rem; margin-top: 1.5rem; flex-grow: 1; }
.basic-card__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.basic-card:hover .basic-card__title { color: var(--rosewood); }
.basic-card__desc {
  font-size: 0.8125rem;
  color: var(--stone);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============ DIVIDER ============ */
.divider { width: 2.5rem; height: 1px; background: var(--rosewood); }

/* ============ TAB PANEL WRAPPER ============ */
.tab-panels-wrap {
  background: white;
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(101,122,87,0.05);
}
@media (min-width: 768px) {
  .tab-panels-wrap {
    border-radius: 3rem;
    padding: 3rem;
  }
}

.tab-panel-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-break: break-word;
}

/* Full-width service item inside service-cols */
.service-cols .service-grid-item--full {
  grid-column: 1 / -1;
}

/* ============ EXTRA RESPONSIVE GRIDS ============ */
/* 2-col price list: 1 col on mobile */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
  }
}

/* 3-col cards: stacks on mobile */
.card-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 640px)  { .card-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .card-grid-3 { grid-template-columns: repeat(3,1fr); } }

/* 4-col basic care grid */
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
@media (min-width: 640px)  { .card-grid-4 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(4,1fr); } }

/* Service 2-col list inside tabs */
.service-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .service-cols { grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; } }

/* Pricing page individual service 2-col */
.pricing-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 4rem;
}
@media (min-width: 768px) { .pricing-section-grid { grid-template-columns: 1fr 1fr; } }

/* Tab panel: sticky image + service list */
.tab-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .tab-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
  }
}

/* About story: sticky sidebar + content */
.story-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .story-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
  }
}
