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

/* ==========================================================================
   Liquid Love Med Spa — style.css
   Coastal apothecary aesthetic. Mobile-first. BEM (double-underscore) naming.
   ========================================================================== */

:root {
  --color-bg: #faf7f2;
  --color-teal: #5BB3AD;
  --color-teal-dark: #489a94;
  --color-teal-soft: #d4e8e4;
  --color-gold: #C9A96E;
  --color-gold-dark: #b3925a;
  --color-text: #2d3a3a;
  --color-muted: #6b7280;
  --color-white: #ffffff;
  --color-line: #e6ded2;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-soft: 0 10px 30px rgba(45, 58, 58, 0.08);
  --shadow-card: 0 6px 20px rgba(45, 58, 58, 0.06);
  --shadow-header: 0 4px 20px rgba(45, 58, 58, 0.08);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --wrap: 1200px;
  --gutter: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-text);
}

p {
  margin: 0 0 1em;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: 64px 0;
}

.section--tight {
  padding: 44px 0;
}

.section--alt {
  background-color: var(--color-white);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin: 0 0 16px;
  display: inline-block;
}

.section__title {
  font-size: clamp(28px, 5vw, 44px);
  max-width: 22ch;
}

.section__lead {
  color: var(--color-muted);
  max-width: 60ch;
  font-size: 17px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background-color: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(91, 179, 173, 0.28);
}

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

.btn--gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.28);
}

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

.btn--ghost {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-line);
}

.btn--ghost:hover {
  border-color: var(--color-teal);
  color: var(--color-teal-dark);
}

.btn--light {
  background-color: var(--color-white);
  color: var(--color-text);
  box-shadow: var(--shadow-card);
}

.btn--block {
  width: 100%;
}

/* ---------- Image placeholders ---------- */
.placeholder {
  background: linear-gradient(135deg, var(--color-teal-soft), #eef6f4);
  color: var(--color-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 200px;
  border: 1px solid rgba(91, 179, 173, 0.18);
}

.placeholder__label {
  opacity: 0.85;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 247, 242, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.header--scrolled {
  box-shadow: var(--shadow-header);
  background-color: rgba(250, 247, 242, 0.96);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 74px;
}

.header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.header__brand-top {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
}

.header__brand-bottom {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.header__nav {
  display: none;
  align-items: center;
  gap: 30px;
}

.header__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: color 0.2s var(--ease);
}

.header__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--color-teal);
  transition: width 0.25s var(--ease);
}

.header__link:hover {
  color: var(--color-teal-dark);
}

.header__link:hover::after,
.header__link--active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cta {
  display: none;
}

.header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.header__burger-bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 58, 58, 0.4);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.drawer.is-open .drawer__overlay {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(82%, 340px);
  background-color: var(--color-bg);
  box-shadow: -10px 0 40px rgba(45, 58, 58, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.drawer__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
}

.drawer__link {
  font-family: var(--font-display);
  font-size: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-text);
}

.drawer__cta {
  margin-top: 20px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 40px 0 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.hero__title {
  font-size: clamp(40px, 9vw, 68px);
  font-weight: 500;
  margin: 12px 0 20px;
}

.hero__lead {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-teal-dark);
}

.hero__stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero__media {
  position: relative;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero__badge {
  position: absolute;
  bottom: -18px;
  left: 18px;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   About
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.feature {
  background-color: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--color-teal-soft);
  color: var(--color-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature__title {
  font-size: 21px;
  margin-bottom: 6px;
}

.feature__text {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}

/* ==========================================================================
   Services preview / grid
   ========================================================================== */
.services__head {
  margin-bottom: 36px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.service-card__media {
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  display: block;
  border-radius: 0;
  border: none;
}

.service-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 600;
}

.service-card__title {
  font-size: 24px;
  margin: 0;
}

.service-card__text {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}

.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background-color: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease);
}

.service-row:hover {
  transform: translateX(4px);
}

.service-row__mark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-teal);
  line-height: 1;
  flex-shrink: 0;
}

.service-row__body {
  flex: 1;
}

.service-row__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.service-row__title {
  font-size: 22px;
  margin: 0;
}

.service-row__time {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 600;
  white-space: nowrap;
}

.service-row__text {
  font-size: 14px;
  color: var(--color-muted);
  margin: 6px 0 0;
}

.services__more {
  margin-top: 32px;
  text-align: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-teal-dark);
  font-size: 15px;
  transition: gap 0.2s var(--ease);
}

.link-arrow:hover {
  gap: 14px;
}

/* ==========================================================================
   Mobile services callout
   ========================================================================== */
.callout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.callout__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.callout__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 450px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   Visit banner
   ========================================================================== */
.visit {
  background-color: var(--color-text);
  color: #e9efee;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.visit__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visit__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.visit__value {
  font-size: 15px;
  color: #d7e0df;
  line-height: 1.6;
}

.visit__value a:hover {
  color: var(--color-teal);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials__head {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials__head .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.testimonial {
  background-color: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial__stars {
  color: var(--color-gold);
  letter-spacing: 3px;
  font-size: 16px;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.testimonial__name {
  font-weight: 600;
  font-size: 15px;
}

.testimonial__loc {
  font-size: 13px;
  color: var(--color-muted);
}

/* ==========================================================================
   Team
   ========================================================================== */
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.team__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.team__name {
  font-size: clamp(28px, 5vw, 38px);
}

.team__role {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 18px;
}

.team__bio {
  color: var(--color-muted);
  font-size: 15px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--color-text);
  color: #cfd9d8;
  padding: 56px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer__brand-top {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-white);
}

.footer__brand-bottom {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: #e9efee;
}

.footer__col-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list a:hover,
.footer__list li:hover {
  color: var(--color-teal);
}

.footer__list li {
  font-size: 14px;
  line-height: 1.5;
}

.footer__cta {
  margin-top: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #9fb0af;
}

.footer__cities {
  color: #9fb0af;
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-head {
  padding: 56px 0 20px;
  text-align: center;
}

.page-head__title {
  font-size: clamp(34px, 7vw, 56px);
  margin: 10px 0 18px;
}

.page-head__lead {
  color: var(--color-muted);
  max-width: 60ch;
  margin: 0 auto;
  font-size: 17px;
}

/* ==========================================================================
   Booking widget
   ========================================================================== */
.booking {
  padding: 20px 0 48px;
}

.booking__frame {
  background-color: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  min-height: 500px;
}

.booking__fallback {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  color: var(--color-muted);
}

.booking__fallback a {
  color: var(--color-teal-dark);
  font-weight: 600;
}

/* ==========================================================================
   Shop
   ========================================================================== */
.shop__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product {
  background-color: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.product__media {
  min-height: 220px;
  border: none;
  border-radius: 0;
}

.product__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product__title {
  font-size: 22px;
  margin: 0;
}

.product__text {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  flex: 1;
}

.shop__banner {
  margin-top: 48px;
  background-color: var(--color-teal-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.shop__banner-title {
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 18px;
}

.shop__banner-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ==========================================================================
   Gallery (masonry)
   ========================================================================== */
.gallery__grid {
  columns: 1;
  column-gap: 20px;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.gallery__media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.gallery__media--tall {
  min-height: 360px;
}

.gallery__media--short {
  min-height: 220px;
}

.gallery__media--wide {
  min-height: 260px;
}

.gallery__caption {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 8px;
  padding-left: 4px;
}

.gallery__cta {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--color-teal-soft);
  color: var(--color-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card__icon svg {
  width: 22px;
  height: 22px;
}

.info-card__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.info-card__value {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
}

.info-card__value a:hover {
  color: var(--color-teal-dark);
}

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.contact__book {
  margin-top: 22px;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__sign {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  color: var(--color-teal);
  transition: transform 0.3s var(--ease);
}

.faq__sign::before,
.faq__sign::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  border-radius: 2px;
}

.faq__sign::before {
  top: 12px;
  left: 3px;
  width: 20px;
  height: 2px;
}

.faq__sign::after {
  top: 3px;
  left: 12px;
  width: 2px;
  height: 20px;
  transition: transform 0.3s var(--ease);
}

.faq__item.is-open .faq__sign::after {
  transform: scaleY(0);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq__a-inner {
  padding: 0 22px 20px;
  color: var(--color-muted);
  font-size: 15px;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}

/* ==========================================================================
   Responsive — tablet
   ========================================================================== */
@media (min-width: 640px) {
  .about__cards {
    grid-template-columns: 1fr 1fr;
  }
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .shop__grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  .visit__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery__grid {
    columns: 2;
  }
}

/* ==========================================================================
   Responsive — desktop
   ========================================================================== */
@media (min-width: 960px) {
  :root {
    --gutter: 40px;
  }
  .section {
    padding: 88px 0;
  }
  .header__nav {
    display: flex;
  }
  .header__cta {
    display: inline-flex;
  }
  .header__burger {
    display: none;
  }
  .hero {
    padding: 64px 0 80px;
  }
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
  .about__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services__list {
    grid-template-columns: 1fr 1fr;
  }
  .callout__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .team__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }
  .shop__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery__grid {
    columns: 3;
  }
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }
}
