/* ---------- Design tokens ---------- */
:root {
  --bg: oklch(98% 0.006 235);
  --bg-alt: oklch(96% 0.01 235);
  --text: oklch(20% 0.02 235);
  --text-muted: oklch(46% 0.02 235);
  --border: oklch(89% 0.014 235);

  --accent: #27b1f3;
  --accent-hover: color-mix(in srgb, var(--accent) 82%, black);
  --accent-light: color-mix(in srgb, var(--accent) 55%, white);
  --accent-tint: color-mix(in srgb, var(--accent) 12%, white);
  --on-accent: oklch(99% 0.005 235);

  --field-bg: oklch(27% 0.02 235);
  --field-border: oklch(36% 0.02 235);
  --text-on-dark-muted: oklch(70% 0.02 235);

  --font-serif: 'Newsreader', Georgia, serif;
  --font-sans: 'Work Sans', Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
h1, h2, h3, p, figure { margin: 0; }
ul { margin: 0; padding: 0; }

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}
::selection { background: var(--accent-tint); }

.header-link {
  color: var(--text);
}

.header-link:hover {
  text-decoration: none;
  color: black;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
}

.padding {
  padding-bottom: 20px;
}

.section-heading {
  max-width: 600px;
  margin: 0 0 48px;
}
.section-heading h2,
.pricing-headline h2 {
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.6rem);
  margin-top: 14px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-sans);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-accent {
  background: var(--accent);
  color: var(--on-accent);
  padding: 15px 32px;
  font-size: 16px;
}
.btn-accent:hover { background: var(--accent-hover); color: var(--on-accent); }

.link-underline {
  color: var(--text);
  text-decoration: underline;
  font-weight: 600;
  font-size: 16px;
}
.link-underline:hover { color: var(--accent); }

/* Below 640px: everything centers, except where noted */
body { text-align: left; }
@media (max-width: 639px) {
  body { text-align: center; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  padding-block: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  white-space: nowrap;
  text-decoration: none;
}
.phone-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.nav-book { padding: 11px 24px; font-size: 15px; }

@media (max-width: 639px) {
  .phone-pill {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .phone-pill-text { display: none; }
}
@media (max-width: 1023px) {
  .nav-book { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(40px, 7vw, 88px) 0 clamp(60px, 8vw, 100px);
}
.hero-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hero-copy { flex: 1 1 420px; min-width: 260px; }
.hero-title {
  font-size: clamp(2.6rem, 4.4vw + 1rem, 4.2rem);
  line-height: 1.05;
  margin: 18px 0 24px;
  color: var(--text);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.donation-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 460px;
}
.donation-give {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.donation-banner p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  text-align: left;
}

.hero-photo-desktop { flex: 1 1 460px; min-width: 260px; }
.hero-photo-mobile { display: none; }
.hero-photo-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 975px) {
  .hero-row { flex-direction: column; align-items: stretch; }
  .hero-copy { flex: none; min-width: 0; }
  .hero-title { margin: 18px 0; }
  .hero-sub { max-width: none; }
  .hero-ctas { justify-content: center; margin-bottom: 28px; }
  .donation-banner { max-width: none; }
  .hero-photo-desktop { display: none; }
  .hero-photo-mobile { display: block; margin: 24px 0; }
  .hero-photo-mobile .hero-photo-img { aspect-ratio: 3/2; max-height: none; }
}

/* ---------- Services ---------- */
.services { padding: clamp(40px, 6vw, 72px) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  background: var(--bg-alt);
  text-align: center;
}
.service-icon {
  width: 100px;
  height: 100px;
  
  
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.service-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.service-card h3 {
  font-size: 21px;
  margin: 0 0 10px;
  color: var(--text);
}
.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- About ---------- */
.about { padding: clamp(40px, 6vw, 72px) 0; }
.about-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1.3fr);
  grid-template-areas:
    "photo eyebrow"
    "photo heading"
    "photo text";
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.about-eyebrow { grid-area: eyebrow; }
.about-heading {
  grid-area: heading;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.6rem);
  
  color: var(--text);
}
.about-photo { grid-area: photo; }
.about-text { grid-area: text; text-align: left; }
.about-text p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }

.image-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* Stacked about: eyebrow -> heading -> photo -> paragraphs, centered */
@media (max-width: 849px) {
  .about-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "heading"
      "photo"
      "text";
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .about-text { text-align: center; }
  .image-placeholder { max-width: 340px; }
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-row {
  padding-block: clamp(40px, 6vw, 72px);
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
  align-items: center;
}
.pricing-headline { flex: 1 1 320px; min-width: 280px; }
.price {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 4vw + 1rem, 3.6rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.price span {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-headline p {
  font-size: 15px;
  color: var(--text-muted);
}
.pricing-grid {
  flex: 2 1 420px;
  min-width: 280px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.pricing-item-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
}
.pricing-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.pricing-divider { display: none; }

@media (max-width: 461px) {
  .pricing-divider {
    display: block;
    height: 1px;
    background: var(--border);
    width: 60%;
    margin: 0 auto;
  }
}

/* ---------- Gallery ---------- */
.gallery { padding: clamp(40px, 6vw, 72px) 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 18px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--text);
  border-top: 1px solid var(--border);
}
.contact-row {
  padding-block: clamp(48px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 64px);
}
.eyebrow-light { color: var(--accent-light); }
.heading-light {
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.6rem);
  margin: 14px 0 28px;
  color: var(--bg);
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form-row-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
#contact-form input:not([type="checkbox"]),
#contact-form select,
#contact-form textarea {
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--bg);
  font-family: var(--font-sans);
  width: 100%;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}
#contact-form textarea { resize: vertical; }
#contact-form input::placeholder,
#contact-form textarea::placeholder { color: var(--text-on-dark-muted); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  text-align: left;
}
.checkbox-row input { margin-top: 2px; flex-shrink: 0; }
.checkbox-row a { color: var(--accent-light); }

.submit-btn {
  margin-top: 8px;
  align-self: flex-start;
  transition: background 0.15s;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 10px;
}
.contact-phone {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--bg);
}
.contact-email,
.contact-ig {
  font-size: 17px;
  color: var(--bg);
}
.contact-divider {
  height: 1px;
  background: var(--field-border);
}
.service-area-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bg);
}

@media (max-width: 639px) {
  #contact-form,
  .checkbox-row { text-align: center; }
  .submit-btn { align-self: center; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  border-top: 1px solid var(--field-border);
}
.footer-row {
  padding-block: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--bg);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-links a { color: var(--text-on-dark-muted); }
.footer-links span { color: var(--text-on-dark-muted); }

.card-book-cta {
  margin-top: 15px;
  font-weight: 600;
  color: #27b1f3;
  font-size: 16px;
  transition: 0.2s;
}

.service-card:hover .card-book-cta {
  color: #1a90c9;
}

.bookings-card {
  transition: 0.2s;
  cursor: pointer;
}

.bookings-card:hover, .card-book-cta {
  border-color: #27b1f3;
  transform: translateY(-2px);
}

.booking-padding {
  padding-top: 6rem;
}