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

:root {
  --white:     #ffffff;
  --off-white: #f4f8fc;
  --pale:      #e8f2fb;
  --sky:       #b8d9f5;
  --ocean:     #2e86c1;
  --deep:      #1a5c8a;
  --navy:      #0d3a5c;
  --text:      #0d2135;
  --muted:     #5a7a92;
  --border:    #cce0f0;
  --shadow-sm: 0 2px 12px rgba(46,134,193,.10);
  --shadow:    0 8px 40px rgba(46,134,193,.15);
  --shadow-lg: 0 20px 60px rgba(13,58,92,.18);
  --radius:    16px;
  --radius-sm: 10px;
  --max:       1080px;
  --header-h:  70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}

/* ─── Watermark background ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 80% -10%, rgba(184,217,245,.35) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at -10% 60%, rgba(46,134,193,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(46,134,193,.06);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: .5px;
  color: var(--navy);
}
.brand span { color: var(--ocean); font-style: italic; }

/* ─── HAMBURGER / NAV ─── */
.nav { display: flex; align-items: center; gap: 8px; position: relative; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  transition: background .18s, border-color .18s;
}
.hamburger:hover { background: var(--pale); border-color: var(--sky); }
.hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ocean);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  right: 50px;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 200;
}
.nav-dropdown.open { display: flex; }

.nav-link {
  display: block;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: .2px;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--pale); color: var(--ocean); }
.nav-link.active {
  background: rgba(46,134,193,.1);
  color: var(--ocean);
  font-weight: 600;
}

/* ─── CART BUTTON ─── */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--pale);
  border: 1.5px solid var(--sky);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--ocean);
  font-weight: 600;
  font-size: .88rem;
  transition: background .15s;
}
.cart-btn:hover { background: var(--sky); }
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ocean);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

/* ─── CONTAINER ─── */
.container {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ─── HERO (home) ─── */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 72px 0 60px;
}
@media (max-width: 820px) { .home-hero { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 36px; } }

.home-hero__text {}
.home-hero__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: rgba(46,134,193,.08);
  border: 1px solid rgba(46,134,193,.2);
  border-radius: 999px;
}
.home-hero__title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--navy);
  margin-bottom: 22px;
}
.home-hero__title em { color: var(--ocean); font-style: italic; }
.home-hero__body {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 32px;
  line-height: 1.75;
}
.home-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.home-hero__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pale) 0%, var(--sky) 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.home-hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e86c1' fill-opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.home-hero__placeholder {
  position: relative;
  text-align: center;
  padding: 24px;
}
.home-hero__placeholder svg { opacity: .3; margin: 0 auto 12px; }
.home-hero__placeholder p { color: var(--muted); font-size: .9rem; }

/* ─── DESCRIPTION STRIP ─── */
.description-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.description-strip h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 18px;
}
.description-strip p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.8;
}

/* ─── GALLERY ─── */
.gallery-section { margin-bottom: 72px; }
.gallery-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.gallery-section__header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--navy);
}
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocean);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pale);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease, box-shadow .22s ease;
  cursor: pointer;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-item:first-child {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.gallery-item__placeholder {
  text-align: center;
  padding: 20px;
}
.gallery-item__placeholder svg { opacity: .25; margin: 0 auto 8px; }
.gallery-item__placeholder span { font-size: .82rem; color: var(--muted); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ocean);
  background: var(--ocean);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: background .18s, transform .12s, box-shadow .18s;
  letter-spacing: .2px;
}
.btn:hover { background: var(--deep); border-color: var(--deep); box-shadow: 0 4px 16px rgba(46,134,193,.3); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ocean);
}
.btn-ghost:hover { background: var(--pale); border-color: var(--ocean); box-shadow: none; }

.btn.full { width: 100%; }

/* ─── PAGE HERO (section banner) ─── */
.page-hero {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 36px;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  margin-top: 8px;
}

/* ─── BIO PAGE ─── */
.bio-photo-slot {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: var(--pale);
  border: 2px dashed var(--sky);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: .9rem;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-sm);
}
.bio-photo-slot svg { opacity: .35; }

.bio-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 780px) { .bio-layout { grid-template-columns: 1fr; } }

.bio-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.bio-content p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.bio-placeholder-text {
  color: var(--sky);
  font-style: italic;
  font-size: .92rem;
  border-left: 3px solid var(--sky);
  padding-left: 14px;
  margin: 20px 0;
}

/* ─── CALENDAR PAGE ─── */
.calendar-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
}
.calendar-wrap iframe { display: block; }

/* ─── SHOP ─── */
.shop-controls-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.shop-controls-row .input { min-width: 180px; flex: 1; }

.input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  outline: none;
  transition: border-color .18s, background .18s;
}
.input:focus { border-color: var(--ocean); background: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .product-grid { grid-template-columns: 1fr; } }

.product {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product .img {
  aspect-ratio: 4/3;
  background: var(--pale);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .5px;
}
.product .body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product .title { font-weight: 600; font-size: .97rem; color: var(--text); }
.product .meta { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: .88rem; }
.product .meta strong { color: var(--ocean); font-size: 1rem; }
.product .actions { display: flex; gap: 8px; margin-top: auto; }
.product .actions button { flex: 1; padding: 9px 10px; font-size: .87rem; }

/* ─── CARDS ─── */
.card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 780px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ─── CART DRAWER ─── */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: var(--white);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px rgba(13,58,92,.12);
  transform: translateX(110%);
  transition: transform .24s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
}
.drawer[aria-hidden="true"] { transform: translateX(110%); }
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid var(--border);
}
.drawer-header h2 { font-size: 1.4rem; color: var(--navy); }
.drawer-body { padding: 16px 20px; overflow: auto; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.drawer-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }

.icon-btn {
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--muted);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  font-size: .9rem;
  transition: background .15s;
}
.icon-btn:hover { background: var(--pale); color: var(--ocean); }

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13,58,92,.25);
  z-index: 200;
  backdrop-filter: blur(2px);
}

.cart-line {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.cart-line .name { font-weight: 600; color: var(--text); font-size: .95rem; }

.qty { display: inline-flex; align-items: center; gap: 8px; }
.qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ocean);
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.qty button:hover { background: var(--pale); }

.row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.lead { color: var(--muted); font-size: 1.06rem; line-height: 1.75; }

/* ─── MODAL ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,58,92,.4);
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal[hidden] { display: none !important; }
.modal-card {
  width: min(700px, 96vw);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
}
.modal-close { position: absolute; top: 14px; right: 14px; }

/* ─── CHECKOUT ─── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 860px) { .checkout-grid { grid-template-columns: 1fr; } }

.stripe-box {
  margin-top: 10px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--off-white);
}

/* ─── FOOTER ─── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: var(--navy);
  color: rgba(255,255,255,.75);
}

.footer-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
@media (max-width: 860px) {
  .footer-body { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-body { grid-template-columns: 1fr; gap: 28px; }
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .5px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,217,245,.2);
}

.footer-col p,
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  text-decoration: none;
  display: block;
  transition: color .15s;
}
.footer-col a:hover { color: var(--sky); }

.footer-col .footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky);
  font-size: .9rem;
  margin-top: 4px;
  word-break: break-all;
}
.footer-col .footer-email:hover { color: #fff; }

.footer-sitemap a {
  padding: 3px 0;
}
.footer-sitemap a::before {
  content: '→ ';
  opacity: .4;
  font-size: .8rem;
}

/* Social icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(184,217,245,.25);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  transition: background .18s, border-color .18s, color .18s, transform .15s;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(46,134,193,.3);
  border-color: var(--sky);
  color: #fff;
  transform: translateY(-2px);
}
.social-btn svg { display: block; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  max-width: var(--max);
  margin: 0 auto;
}
.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ─── CONTACT FORM (About page) ─── */
.contact-section {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.contact-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-section .lead {
  margin-bottom: 32px;
}

.contact-form {
  max-width: 680px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .3px;
  text-transform: uppercase;
}
.form-group textarea.input {
  resize: vertical;
  min-height: 130px;
  font-family: 'DM Sans', sans-serif;
}

.contact-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(46,134,193,.08);
  border: 1.5px solid var(--sky);
  border-radius: var(--radius);
  margin-top: 16px;
}
.contact-success svg { flex-shrink: 0; }
.contact-success p { color: var(--ocean); font-weight: 500; font-size: 1rem; margin: 0; }

/* ─── DIVIDER ─── */
hr.wave {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky), var(--ocean), var(--sky), transparent);
  margin: 48px 0;
  opacity: .4;
}

/* ─── SUCCESS BANNER ─── */
.success-banner {
  display: none;
  background: rgba(46,134,193,.08);
  border: 1.5px solid var(--sky);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.success-banner h2 { color: var(--ocean); margin-bottom: 6px; }

/* ── Logo slot ── */
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px dashed var(--sky);
  background: var(--pale);
  overflow: hidden;
  transition: border-color .18s, background .18s;
}
.logo-slot:hover { border-color: var(--ocean); background: rgba(46,134,193,.08); }

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════
   SERVICES LIST PAGE
══════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.service-card__img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--pale) 0%, var(--sky) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.service-card__img-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; opacity: .45;
}
.service-card__img-placeholder svg { display: block; }
.service-card__img-placeholder span {
  font-size: .78rem; color: var(--ocean);
  font-weight: 500; letter-spacing: .5px;
}

.service-card__body {
  padding: 20px 20px 12px;
  flex: 1; display: flex; flex-direction: column; gap: 5px;
}
.service-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--navy); line-height: 1.2;
}
.service-card__price { font-size: 1.05rem; font-weight: 700; color: var(--ocean); }
.service-card__duration { font-size: .82rem; color: var(--muted); }

.service-card__actions {
  display: flex; gap: 10px;
  padding: 0 20px 20px; margin-top: auto;
}
.service-card__actions .btn { flex: 1; padding: 10px 12px; font-size: .88rem; }

/* ── Service Info Modal ── */
.svc-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(13,58,92,.45);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
.svc-modal-overlay.open { opacity: 1; pointer-events: all; }

.svc-modal {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: min(580px, 96vw);
  max-height: 88vh; overflow-y: auto;
  display: flex; flex-direction: column;
  transform: translateY(18px) scale(.97);
  transition: transform .24s ease;
}
.svc-modal-overlay.open .svc-modal { transform: translateY(0) scale(1); }

.svc-modal__img {
  width: 100%; aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--pale), var(--sky));
  overflow: hidden; flex-shrink: 0; position: relative;
}
.svc-modal__img img {
  width: 100%; height: 100%;
  object-fit: cover; position: absolute; inset: 0;
}

.svc-modal__body {
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-modal__header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px; margin-bottom: 4px;
}
.svc-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 300;
  color: var(--navy); line-height: 1.15;
}
.svc-modal__close {
  flex-shrink: 0; width: 36px; height: 36px;
  border-radius: 9px; border: 1.5px solid var(--border);
  background: var(--off-white); color: var(--muted);
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.svc-modal__close:hover { background: var(--pale); color: var(--ocean); }

.svc-modal__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.svc-modal__price { font-size: 1.15rem; font-weight: 700; color: var(--ocean); }
.svc-modal__tag {
  font-size: .78rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted);
  padding: 3px 10px; background: var(--pale);
  border: 1px solid var(--border); border-radius: 999px;
}
.svc-modal__desc { color: var(--muted); line-height: 1.8; font-size: .97rem; }
.svc-modal__footer {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-top: 8px; border-top: 1px solid var(--border); margin-top: 4px;
}
.svc-modal__footer .btn { flex: 1; min-width: 120px; }
