* {
  box-sizing: border-box;
}

:root {
  --bg: #f8f7f3;
  --surface: #ffffff;
  --surface-soft: #fcfbf8;
  --text: #2f3a34;
  --muted: #5b6a62;
  --primary: #8bb7a6;
  --primary-strong: #6e9f8b;
  --accent: #f1cfb7;
  --line: #e7e4dd;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--primary-strong);
  line-height: 1.2;
  transition: color 0.2s ease;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-align: center;
}

.brand:hover {
  color: var(--text);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-list a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
  background: var(--primary);
  color: #ffffff;
}

main {
  padding: 2rem 0 3rem;
}

.hero {
  background: linear-gradient(135deg, var(--surface), var(--surface-soft));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.hero h1 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-strong);
  background: #e8f2ee;
  border: 1px solid #cce0d8;
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.05rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--primary);
  color: #fff;
}

.button.primary:hover {
  background: var(--primary-strong);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.section {
  margin-top: 2.2rem;
}

.section h2 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.page-title {
  margin: 0 0 0.4rem;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.15;
}

.section-intro {
  margin-top: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.section.grid .card {
  display: flex;
  flex-direction: column;
}

.section.grid .card .button-row {
  margin-top: auto;
  justify-content: center;
  width: 100%;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.card-tinted {
  background: #eef5f1;
  border-color: #cfe0d8;
}

.card-blue {
  background: #daedf8;
  border-color: #aed0e8;
}

.card-pink {
  background: #fde4ee;
  border-color: #f5b8d0;
}

.card h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.45rem;
}

.card p {
  margin-top: 0;
  color: var(--muted);
}

.place-card {
  text-align: center;
}

.photo-card {
  border: 2px dashed #c8d8d1;
  border-radius: 14px;
  background: #f4f8f6;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #507667;
  font-weight: 600;
  padding: 1rem;
}

.photo-card.video-card {
  border: none;
  background: transparent;
  padding: 0;
}

.photo-card video {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  display: block;
}

.photo-card.small {
  min-height: 160px;
  height: 160px;
  padding: 0;
  overflow: hidden;
  place-items: center;
}

.notice {
  background: #fff5ed;
  border: 1px solid #f0dfd1;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: #735f53;
}

.nav-list a.book-now {
  background: var(--primary);
  color: #ffffff;
}

.nav-list a.book-now:hover {
  background: var(--primary-strong);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  justify-content: center;
}

.site-footer .container {
  text-align: center;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.feature-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.contact-icon {
  color: var(--primary-strong);
  line-height: 0;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.card form {
  width: 100%;
}

.card form p {
  margin: 0 0 0.85rem;
}

.card form p:last-child {
  margin-bottom: 0;
}

.card form label {
  font-weight: 600;
  color: var(--text);
}

.card form input,
.card form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
}

.card form textarea {
  resize: vertical;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

/* Home "What You Can Expect" two-column: symmetrical, equal-height boxes */
.section.two-col .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section.two-col .card .button-row {
  justify-content: center;
  width: 100%;
}

/* Image fills its column to match the card height, so neither box has dead space */
.section.two-col .photo-card.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 100%;
}

.section.two-col .photo-card.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Crop the empty background above the heads and below the feet, without resizing the people */
.section.two-col .photo-card.portrait-crop {
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
}

.section.two-col .photo-card.portrait-crop img {
  width: 100%;
  aspect-ratio: 977 / 1226;
  object-fit: cover;
  object-position: center 47%;
  border-radius: 14px;
}

.social-card {
  text-align: center;
}

.contact-main-card {
  display: flex;
  flex-direction: column;
}

.contact-main-card .social-card {
  margin-top: auto;
  padding-top: 2rem;
}

.about-me-card {
  text-align: center;
}

.about-me-card .button-row {
  justify-content: center;
}

.social-card .button-row {
  justify-content: center;
}

.services-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  align-items: start;
}

.journey {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.journey-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1rem;
  width: 100%;
}

.journey-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.journey-body {
  flex: 1;
}

.journey-body h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.journey-body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.88rem;
  display: grid;
  gap: 0.2rem;
}

.journey-book {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.journey-book .button {
  font-size: 0.82rem;
  padding: 0.45rem 0.75rem;
  white-space: nowrap;
}

.journey-card-1,
.journey-card-2,
.journey-card-3,
.journey-card-4,
.journey-card-5 { background: #e8f2ee; border-color: #cce0d8; }

.journey-cta {
  text-align: center;
  background: linear-gradient(135deg, #e8f2ee, #fdeee6);
  border-color: #d2e0d8;
}

/* ── Bespoke 1:1 card ── */
.bespoke-card {
  position: relative;
  background: linear-gradient(135deg, #fff8f3, #fdeee6);
  border: 2px solid #e8c9b0;
  box-shadow: 0 6px 24px rgba(139, 90, 50, 0.12);
}

.bespoke-badge {
  display: inline-block;
  background: var(--primary-strong);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.bespoke-title {
  font-size: 1.4rem;
  color: #7a4a2e;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.bespoke-intro {
  color: #5c3d28;
  font-size: 0.97rem;
  margin-bottom: 0.9rem;
}

.bespoke-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: grid;
  gap: 0.45rem;
}

.bespoke-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text);
  font-size: 0.93rem;
}

.bespoke-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary-strong);
  font-size: 0.75rem;
  top: 0.18em;
}

.bespoke-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bespoke-btn {
  background: #c4784a;
  color: #fff;
  border-color: #c4784a;
  font-weight: 700;
}

.bespoke-btn:hover {
  background: #a85e35;
  border-color: #a85e35;
}

.journey-cta h2 {
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.journey-cta p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.journey-cta .button-row {
  justify-content: center;
}

.journey-arrow {
  display: flex;
  justify-content: center;
  line-height: 1;
  margin: 0.1rem 0;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Booking page: calendar + sticky sidebar */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.photo-card-top {
  height: 320px;
  min-height: unset;
  padding: 0;
  overflow: hidden;
}

.photo-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.quote {
  font-style: italic;
  color: #4f6258;
}

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  /* Stacked: let the image flow normally instead of filling a matched column */
  .section.two-col .photo-card.video-card {
    position: static;
    min-height: 0;
  }

  .section.two-col .photo-card.video-card img {
    position: static;
    height: auto;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  /* Booking page: stack calendar and sidebar, and drop the sticky */
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-page-right {
    position: static !important;
  }

  .photo-card-top {
    height: 260px;
  }

  .about-me-card {
    padding-top: 1.5rem;
  }
}

/* ── Mobile (≤640px) ── */
@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-list {
    justify-content: center;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-tagline {
    text-align: center;
  }

  /* Journey cards: stack book button below content */
  .journey-card {
    flex-wrap: wrap;
  }

  .journey-book {
    width: 100%;
    margin-top: 0.5rem;
  }

  .journey-book .button {
    width: 100%;
    text-align: center;
  }

  .journey-cta .button-row {
    flex-direction: column;
  }

  .journey-cta .button-row .button {
    width: 100%;
    text-align: center;
  }

  .photo-card-top {
    height: 200px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  /* Contact page inner two-column grid → single column */
  .contact-inner-grid {
    grid-template-columns: 1fr !important;
  }

  /* Form name/email side-by-side rows → stacked */
  .form-two-col {
    grid-template-columns: 1fr !important;
  }

  .hero-tag-row {
    justify-content: center;
  }

  .button-row {
    justify-content: center;
  }

  main {
    padding: 1.25rem 0 2rem;
  }

  .card {
    padding: 0.9rem;
  }
}

/* ── Small phones (≤400px) ── */
@media (max-width: 400px) {
  .nav-list a {
    padding: 0.35rem 0.6rem;
    font-size: 0.88rem;
  }

  .brand {
    font-size: 1.15rem;
  }

  .hero-tag {
    font-size: 0.78rem;
    padding: 0.25rem 0.65rem;
  }

  .journey-badge {
    width: 30px;
    height: 30px;
    font-size: 0.88rem;
  }

  .booking-option-price {
    font-size: 1.1rem;
  }
}
