/* Kathleen Lopes Studio — design tokens taken from the original Wix site */

:root {
  --green: #92B079;
  --green-dark: #7d9a65;
  --gold: #C9A961;
  --ink: #000000;
  --muted: #6E6E6E;
  --soft: #8F8F8F;
  --line: #EEEEEE;
  --bg: #ffffff;
  --bg-alt: #FAF9F7;
  --display: 'Wix Madefor Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --text: 'Wix Madefor Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --wrap: 1160px;
  --radius: 4px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 200;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 860px; }
.center { text-align: center; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--text);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: .75rem 2rem;
  border: 1px solid var(--green);
  border-radius: 100px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.btn:hover, .btn:focus-visible { background: var(--green-dark); border-color: var(--green-dark); }
.btn.small { font-size: .95rem; padding: .6rem 1.5rem; }
.btn.disabled { background: #cfd8c7; border-color: #cfd8c7; cursor: default; pointer-events: none; }

.link-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--display);
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-cta:hover { color: var(--green-dark); }

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 84px;
}
.logo img { width: 150px; height: auto; }
.header-side { display: flex; align-items: center; gap: 1rem; }
.reviews { display: flex; align-items: center; gap: .9rem; }
.reviews img { height: 22px; width: auto; opacity: .85; }

.nav-list, .mobile-list, .footer-list { list-style: none; margin: 0; padding: 0; }
.desktop-nav .nav-list { display: flex; align-items: center; gap: 1.6rem; }
.desktop-nav a, .sub-toggle {
  font-family: var(--text); font-size: .95rem; color: var(--ink);
  text-decoration: none; background: none; border: 0; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
}
.desktop-nav a:hover, .sub-toggle:hover { color: var(--green); }

.has-sub { position: relative; }
.chev { width: 0; height: 0; border: 4px solid transparent; border-top-color: currentColor; margin-top: 3px; }
.desktop-nav .sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.09);
  list-style: none; margin: 0; padding: .5rem 0; min-width: 220px;
  opacity: 0; visibility: hidden; transition: opacity .16s ease;
}
.desktop-nav .has-sub:hover .sub,
.desktop-nav .has-sub:focus-within .sub { opacity: 1; visibility: visible; }
.desktop-nav .sub a { display: block; padding: .5rem 1.1rem; white-space: nowrap; }
.desktop-nav .sub a:hover { background: var(--bg-alt); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { border-top: 1px solid var(--line); background: #fff; }
.mobile-list { padding: .5rem 24px 1.5rem; }
.mobile-list > li { border-bottom: 1px solid var(--line); }
.mobile-list a, .mobile-list .sub-toggle {
  display: block; width: 100%; text-align: left;
  padding: .85rem 0; font-size: 1rem; text-decoration: none; color: var(--ink);
  background: none; border: 0; cursor: pointer;
}
.mobile-list .sub { list-style: none; margin: 0; padding: 0 0 .5rem .9rem; display: none; }
.mobile-list .has-sub.open .sub { display: block; }
.mobile-list .sub a { padding: .55rem 0; color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------------- sections */

section { padding: 4.5rem 0; }
.hero { padding: 5rem 0 3rem; text-align: center; }
.hero h1 { max-width: 900px; margin: 0 auto .8rem; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 0 auto 2rem; }

.section-head { text-align: center; margin-bottom: 2.75rem; }
.ornament { width: 54px; height: auto; margin: 0 auto .9rem; }
.section-sub { color: var(--muted); margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.card { display: flex; flex-direction: column; text-align: left; }
.card-img { display: block; overflow: hidden; border-radius: var(--radius); margin-bottom: 1.1rem; }
.card-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .4s ease; }
.card-img:hover img { transform: scale(1.04); }
.card p { color: var(--ink); font-size: .97rem; }
.card .btn { align-self: flex-start; margin-top: auto; }

.benefits { background: var(--bg-alt); }
.benefit h3, .diff h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.benefit p, .diff p { color: var(--muted); font-size: .95rem; margin: 0; }

.how p { color: var(--ink); }
.how .center { margin-top: 2rem; }

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

/* photo strip */
.strip-section { padding: 0 0 3.5rem; }
.strip { position: relative; }
.strip-track {
  display: flex; gap: 10px; overflow-x: auto; scroll-behavior: smooth;
  padding: 0 24px; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.strip-track::-webkit-scrollbar { display: none; }
.strip-item { flex: 0 0 auto; width: 260px; scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; }
.strip-item img { width: 100%; height: 300px; object-fit: cover; transition: transform .4s ease; }
.strip-item:hover img { transform: scale(1.05); }
.strip-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.strip-nav::after { content: ''; display: block; width: 9px; height: 9px; border-top: 2px solid var(--ink); border-right: 2px solid var(--ink); margin: 0 auto; }
.strip-nav.prev { left: 12px; }
.strip-nav.prev::after { transform: rotate(-135deg); margin-left: 18px; }
.strip-nav.next { right: 12px; }
.strip-nav.next::after { transform: rotate(45deg); margin-left: 14px; }

/* about */
.about-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 3rem; align-items: start; }
.about-portrait { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; float: left; margin: 0 1.5rem 1rem 0; }
.about-text p { color: var(--ink); }
.about-photo img { width: 100%; border-radius: var(--radius); aspect-ratio: 3 / 4; object-fit: cover; }

/* testimonials */
.testimonials { background: var(--bg-alt); }
.quote { margin: 0; display: flex; flex-direction: column; gap: .7rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.quote blockquote { margin: 0; font-size: .96rem; color: var(--ink); line-height: 1.65; }
.quote figcaption { font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--muted); }

/* contact */
.channels { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.channel {
  display: inline-block; padding: .65rem 1.7rem; border: 1px solid var(--green);
  border-radius: 100px; color: var(--green); text-decoration: none; font-size: .95rem;
  transition: background .18s ease, color .18s ease;
}
.channel:hover { background: var(--green); color: #fff; }

.contact-form { max-width: 760px; margin: 0 auto; }
.contact-form .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.field { display: block; margin-bottom: 1.5rem; border: 0; padding: 0; }
.field > span, .field legend {
  display: block; font-size: .9rem; font-weight: 500; margin-bottom: .45rem; color: var(--ink); padding: 0;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%; font-family: var(--text); font-size: 1rem; color: var(--ink);
  padding: .7rem .9rem; border: 1px solid #d8d8d8; border-radius: var(--radius); background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green);
}
.options { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.opt { display: inline-flex; align-items: center; gap: .45rem; font-size: .95rem; color: var(--muted); cursor: pointer; }
.opt input { accent-color: var(--green); width: 17px; height: 17px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn { display: block; margin: 0 auto; min-width: 180px; }
.form-status { text-align: center; margin: 1rem 0 0; font-size: .95rem; min-height: 1.4em; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: #c0392b; }
.form-fallback { text-align: center; font-size: .9rem; color: var(--muted); margin-top: .6rem; }

/* hours */
.hours { background: var(--bg-alt); }
.hours h3 { font-size: 1.3rem; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 820px; margin: 0 auto; }
.days { list-style: none; margin: 0; padding: 0; }
.days li { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; color: var(--muted); }
.contact-info p { font-size: .95rem; color: var(--muted); }
.contact-info a { color: var(--green); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

/* galleries */
.gallery-head { padding-bottom: 1rem; }
.gallery { padding-top: 1rem; }
.masonry { columns: 4; column-gap: 12px; }
.tile { display: block; margin: 0 0 12px; break-inside: avoid; border-radius: var(--radius); overflow: hidden; }
.tile img { width: 100%; height: auto; transition: transform .4s ease, opacity .3s ease; }
.tile:hover img { transform: scale(1.03); opacity: .92; }
.gallery-cta { padding-top: 1rem; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 3rem 0; text-align: center; }
.footer-logo { margin: 0 auto 1.5rem; width: 130px; height: auto; }
.footer-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.6rem; margin-bottom: 1.5rem; }
.footer-list a, .footer-list .sub-toggle {
  font-size: .92rem; color: var(--muted); text-decoration: none;
  background: none; border: 0; cursor: pointer; font-family: var(--text);
}
.footer-list a:hover { color: var(--green); }
.footer-list .sub { display: none; }
.copy { font-size: .85rem; color: var(--soft); margin: 0; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.93);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: 0; color: #fff; cursor: pointer; line-height: 1;
}
.lb-close { top: 18px; right: 24px; font-size: 2.6rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 3.4rem; padding: 0 1rem; }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--green); }

/* ---------------------------------------------------------------- responsive */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo img { aspect-ratio: 16 / 10; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .burger { display: flex; }
  .reviews img:nth-child(2) { display: none; }
  .grid-3 { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form .row { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .hero { padding: 3rem 0 2rem; }
  .wrap { padding: 0 18px; }
  .grid-4 { grid-template-columns: 1fr; gap: 1.8rem; }
  .masonry { columns: 2; column-gap: 8px; }
  .tile { margin-bottom: 8px; }
  .strip-item { width: 210px; }
  .strip-item img { height: 240px; }
  .strip-nav { display: none; }
  .about-portrait { width: 110px; height: 110px; margin: 0 1rem .6rem 0; }
  .logo img { width: 120px; }
  .reviews { display: none; }
  .header-inner { min-height: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
