:root {
  --cream: #f7f4ee;
  --cream-dark: #efe8dc;
  --beige: #e6dcc8;
  --sage: #7b826b;
  --sage-dark: #626954;
  --charcoal: #333333;
  --muted: #6f6a61;
  --white: #ffffff;
  --line: rgba(51, 51, 51, 0.1);
  --shadow: 0 18px 50px rgba(51, 51, 51, 0.08);
  --shadow-strong: 0 28px 70px rgba(51, 51, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
}

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

p {
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 6%;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 18px;
}

.logo strong,
.footer-logo strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 21px;
  letter-spacing: 0.5px;
}

.logo span,
.footer-logo span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-menu a:hover {
  color: var(--sage);
}

.nav-button,
.primary-button,
.booking-form button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.nav-button:hover,
.primary-button:hover,
.booking-form button:hover {
  background: var(--sage-dark);
}

.secondary-button,
.card-button {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  color: var(--sage);
  font-weight: 700;
}

.card-button {
  margin-top: 12px;
  text-align: center;
}

.card-button.filled {
  background: var(--sage);
  color: var(--white);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  padding: 92px 6%;
  background: var(--cream);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.96) 0%, rgba(247, 244, 238, 0.88) 24%, rgba(247, 244, 238, 0.34) 48%, rgba(247, 244, 238, 0.08) 72%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.35) 0%, rgba(247, 244, 238, 0.05) 42%, rgba(247, 244, 238, 0.8) 100%);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 1200ms ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: bold;
}

.hero h1,
.section-heading h2,
.split-heading h2,
.contact-section h2 {
  margin: 12px 0;
  font-family: Georgia, serif;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.hero-divider {
  width: 230px;
  height: 18px;
  margin: 24px 0 22px;
  background:
    linear-gradient(90deg, rgba(123, 130, 107, 0.65), rgba(123, 130, 107, 0.18) 40%, transparent 100%);
  mask-image: linear-gradient(90deg, black 0%, black 72%, transparent 100%);
}

.hero p {
  max-width: 520px;
  color: var(--charcoal);
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.hero .secondary-button {
  background: rgba(247, 244, 238, 0.72);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 244, 238, 0.65);
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.28);
  color: var(--white);
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 220ms ease, background 220ms ease;
}

.hero:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover {
  background: rgba(51, 51, 51, 0.58);
}

.slider-arrow-left {
  left: 28px;
}

.slider-arrow-right {
  right: 28px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 20;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.55);
  cursor: pointer;
}

.slider-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--white);
}

.section {
  padding: 82px 6%;
}

.services-section {
  margin-top: -42px;
  position: relative;
  z-index: 12;
}

.section-alt {
  background: var(--cream-dark);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading.centre {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.split-heading p {
  max-width: 600px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 24px;
}

.four-columns {
  grid-template-columns: repeat(4, 1fr);
}

.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.price-card,
.tip-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cream-dark);
  font-size: 26px;
}

.service-card h3,
.price-card h3,
.tip-card h3,
.why-grid h3,
.testimonial-card h3 {
  margin-top: 0;
  font-family: Georgia, serif;
}

.service-card p,
.price-note,
.tip-card p,
.why-grid p,
.testimonial-card p {
  color: var(--muted);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.price-card.featured {
  border: 2px solid var(--sage);
  transform: translateY(-12px);
}

.price {
  margin: 16px 0 8px;
  font-size: 38px;
  font-family: Georgia, serif;
  color: var(--sage);
}

.price-note {
  margin-top: 0;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  line-height: 1.5;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.badge {
  align-self: flex-start;
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  padding: 22px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--beige);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.62));
}

.gallery-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.gallery-card-content span {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 30px;
}

.gallery-card-content small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.tip-card {
  overflow: hidden;
}

.tip-image {
  height: 190px;
  background: linear-gradient(135deg, var(--beige), var(--sage));
}

.tip-image.posing {
  background: linear-gradient(135deg, #e6dcc8, #7b826b);
}

.tip-image.prep {
  background: linear-gradient(135deg, #f7f4ee, #b3a98f);
}

.tip-image.event-tip {
  background: linear-gradient(135deg, #c8cfc0, #333333);
}

.tip-content {
  padding: 26px;
}

.tip-content a {
  color: var(--sage);
  font-weight: 700;
}

.why-section {
  background:
    linear-gradient(90deg, rgba(230, 220, 200, 0.5), transparent),
    var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-grid article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.why-grid span {
  color: var(--sage);
  font-weight: 700;
}

.testimonials-section {
  padding-top: 30px;
}

.testimonial-card {
  padding: 30px;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, serif;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  background: var(--cream-dark);
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-details {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
}

.contact-details p {
  margin: 8px 0;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #ddd4c5;
  border-radius: 16px;
  background: #fffdf9;
  color: var(--charcoal);
  font: inherit;
}

.booking-form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  padding: 54px 6% 24px;
  background: var(--charcoal);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
  gap: 34px;
}

.site-footer h4 {
  margin-top: 0;
  color: var(--white);
  font-family: Georgia, serif;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 8px 0;
  color: rgba(247, 244, 238, 0.78);
}

.site-footer .logo-mark {
  border-color: var(--beige);
  color: var(--beige);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 244, 238, 0.16);
  text-align: center;
}

.modal-open {
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.gallery-modal.open {
  display: block;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.72);
  backdrop-filter: blur(8px);
}

.gallery-modal-panel {
  position: absolute;
  inset: 5%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
}

.gallery-modal-header h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.gallery-modal-close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  overflow-y: auto;
  padding: 28px 32px 34px;
}

.gallery-modal-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--beige);
  box-shadow: var(--shadow);
}

.gallery-modal-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-modal-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 1150px) {
  .hero {
    min-height: 720px;
  }

  .four-columns,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .three-columns,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 700px;
    padding: 72px 6%;
  }

  .hero-slider::before {
    background:
      linear-gradient(180deg, rgba(247, 244, 238, 0.96) 0%, rgba(247, 244, 238, 0.82) 38%, rgba(247, 244, 238, 0.25) 72%, rgba(247, 244, 238, 0.88) 100%);
  }

  .hero-slide img {
    object-position: center;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .hero:hover .slider-arrow,
  .slider-arrow {
    opacity: 1;
  }

  .contact-section,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-card.large {
    grid-row: span 1;
  }

  .contact-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-modal-panel {
    inset: 4%;
    border-radius: 24px;
  }

  .gallery-modal-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
  }

  .gallery-modal-item,
  .gallery-modal-item img {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 18px 5%;
  }

  .logo strong {
    font-size: 18px;
  }

  .nav-button {
    width: 100%;
    text-align: center;
  }

  .nav-menu {
    gap: 18px;
    font-size: 13px;
  }

  .hero {
    min-height: 680px;
    padding: 64px 5%;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons a,
  .card-button {
    width: 100%;
    text-align: center;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 34px;
  }

  .slider-arrow-left {
    left: 12px;
  }

  .slider-arrow-right {
    right: 12px;
  }

  .section {
    padding: 58px 5%;
  }

  .services-section {
    margin-top: 0;
  }

  .four-columns,
  .why-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card,
  .booking-form,
  .testimonial-card {
    padding: 24px;
  }

  .gallery-modal-panel {
    inset: 0;
    border-radius: 0;
  }

  .gallery-modal-header {
    padding: 22px;
  }

  .gallery-modal-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-modal-grid {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  overflow-y: auto;
  padding: 28px 32px 34px;
}

.gallery-modal-item {
  flex: 0 0 auto;
  width: fit-content;
  height: 260px;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--beige);
  box-shadow: var(--shadow);
}

.gallery-modal-item img {
  display: block;
  width: auto;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  transition: transform 500ms ease;
}

.gallery-modal-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .gallery-modal-grid {
    display: flex !important;
    flex-wrap: wrap;
    gap: 14px;
    padding: 22px;
  }

  .gallery-modal-item {
    height: 220px;
  }
}

@media (max-width: 620px) {
  .gallery-modal-grid {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .gallery-modal-item {
    width: 100%;
    height: auto;
  }

  .gallery-modal-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.gallery-modal-grid {
  display: grid !important;
  grid-template-columns: repeat(var(--modal-columns, 4), minmax(0, 1fr)) !important;
  gap: 18px;
  overflow-y: auto;
  padding: 28px 32px 34px;
}

.gallery-modal-item {
  position: relative;
  width: 100%;
  height: 230px;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--beige);
  box-shadow: var(--shadow);
}

.gallery-modal-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.gallery-modal-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 1150px) {
  .gallery-modal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .gallery-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
    padding: 22px;
  }

  .gallery-modal-item {
    height: 220px;
  }
}

@media (max-width: 620px) {
  .gallery-modal-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-modal-item {
    height: auto;
  }

  .gallery-modal-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.gallery-modal-item {
  cursor: zoom-in;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.image-viewer.open {
  display: block;
}

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(10px);
}

.image-viewer-panel {
  position: absolute;
  inset: 4%;
  display: grid;
  place-items: center;
}

.image-viewer-panel img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.image-viewer-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 244, 238, 0.28);
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.image-viewer-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(247, 244, 238, 0.28);
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 46px;
  line-height: 1;
  transform: translateY(-50%);
}

.image-viewer-arrow:hover,
.image-viewer-close:hover {
  background: rgba(247, 244, 238, 0.22);
}

.image-viewer-arrow-left {
  left: 0;
}

.image-viewer-arrow-right {
  right: 0;
}

.image-viewer-counter {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.14);
  color: var(--white);
  font-size: 14px;
  transform: translateX(-50%);
}

@media (max-width: 620px) {
  .image-viewer-panel {
    inset: 3%;
  }

  .image-viewer-close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .image-viewer-arrow {
    width: 42px;
    height: 42px;
    font-size: 36px;
  }

  .image-viewer-arrow-left {
    left: 8px;
  }

  .image-viewer-arrow-right {
    right: 8px;
  }

  .image-viewer-counter {
    bottom: 8px;
  }
}
.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  overflow: hidden;
}

.image-viewer.open {
  display: block;
}

.image-viewer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(10px);
}

.image-viewer-panel {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 72px 90px 58px;
  overflow: hidden;
}

.image-viewer-panel img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 180px);
  max-height: calc(100vh - 150px);
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.image-viewer-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 244, 238, 0.28);
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.image-viewer-arrow {
  position: fixed;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(247, 244, 238, 0.28);
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 46px;
  line-height: 1;
  transform: translateY(-50%);
}

.image-viewer-arrow:hover,
.image-viewer-close:hover {
  background: rgba(247, 244, 238, 0.22);
}

.image-viewer-arrow-left {
  left: 24px;
}

.image-viewer-arrow-right {
  right: 24px;
}

.image-viewer-counter {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.14);
  color: var(--white);
  font-size: 14px;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .image-viewer-panel {
    padding: 70px 68px 58px;
  }

  .image-viewer-panel img {
    max-width: calc(100vw - 136px);
    max-height: calc(100vh - 140px);
  }

  .image-viewer-arrow {
    width: 46px;
    height: 46px;
    font-size: 38px;
  }

  .image-viewer-arrow-left {
    left: 14px;
  }

  .image-viewer-arrow-right {
    right: 14px;
  }
}

@media (max-width: 620px) {
  .image-viewer-panel {
    padding: 70px 18px 58px;
  }

  .image-viewer-panel img {
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - 140px);
    border-radius: 16px;
  }

  .image-viewer-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .image-viewer-arrow {
    width: 40px;
    height: 40px;
    font-size: 34px;
    background: rgba(20, 20, 20, 0.35);
  }

  .image-viewer-arrow-left {
    left: 10px;
  }

  .image-viewer-arrow-right {
    right: 10px;
  }

  .image-viewer-counter {
    bottom: 16px;
  }
}
.hero-slider::before {
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.92) 26%, rgba(247, 244, 238, 0.48) 50%, rgba(247, 244, 238, 0.12) 76%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.28) 0%, rgba(247, 244, 238, 0.04) 46%, rgba(247, 244, 238, 0.84) 100%);
}

.hero-content {
  padding: 10px 0;
}

.hero-content > p:not(.eyebrow) {
  display: inline-block;
  max-width: 560px;
  margin-top: 8px;
  padding: 16px 20px;
  border: 1px solid rgba(123, 130, 107, 0.16);
  border-left: 4px solid rgba(123, 130, 107, 0.65);
  border-radius: 18px;
  background: rgba(247, 244, 238, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(51, 51, 51, 0.08);
  color: var(--charcoal);
  font-weight: 500;
}

.hero h1 {
  text-shadow: 0 2px 18px rgba(247, 244, 238, 0.45);
}

.hero .eyebrow {
  text-shadow: 0 2px 12px rgba(247, 244, 238, 0.85);
}

@media (max-width: 900px) {
  .hero-slider::before {
    background:
      linear-gradient(180deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.9) 34%, rgba(247, 244, 238, 0.45) 66%, rgba(247, 244, 238, 0.9) 100%);
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .hero-content > p:not(.eyebrow) {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
  }
}
.logo-mark {
  position: relative;
  overflow: hidden;
  width: 54px;
  height: 54px;
  border: 1.5px solid var(--sage);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 130, 107, 0.08), transparent 58%),
    rgba(247, 244, 238, 0.72);
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -1px;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(123, 130, 107, 0.38);
  border-radius: 50%;
}

.logo-mark::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 9px;
  width: 34px;
  height: 18px;
  border-bottom: 1.5px solid rgba(123, 130, 107, 0.5);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.icon-circle {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border: 1px solid rgba(123, 130, 107, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(123, 130, 107, 0.12), transparent 60%),
    var(--cream-dark);
  color: var(--sage);
  font-size: 0;
}

.icon-circle::before {
  content: "";
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.service-card:nth-child(1) .icon-circle::before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3' stroke='%237B826B' stroke-width='1.6'/%3E%3Ccircle cx='16' cy='8' r='3' stroke='%237B826B' stroke-width='1.6'/%3E%3Ccircle cx='12' cy='14' r='2.4' stroke='%237B826B' stroke-width='1.6'/%3E%3Cpath d='M3.5 20c.5-3 2.3-5 4.5-5s4 2 4.5 5' stroke='%237B826B' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M11.5 20c.5-3 2.3-5 4.5-5s4 2 4.5 5' stroke='%237B826B' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card:nth-child(2) .icon-circle::before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3.2' stroke='%237B826B' stroke-width='1.6'/%3E%3Ccircle cx='16' cy='8' r='3.2' stroke='%237B826B' stroke-width='1.6'/%3E%3Cpath d='M3.5 19.5c.6-3.4 2.4-5.3 4.5-5.3s3.9 1.9 4.5 5.3' stroke='%237B826B' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M11.5 19.5c.6-3.4 2.4-5.3 4.5-5.3s3.9 1.9 4.5 5.3' stroke='%237B826B' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M10 12.5c1.2.8 2.8.8 4 0' stroke='%237B826B' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card:nth-child(3) .icon-circle::before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='5' width='16' height='15' rx='2.5' stroke='%237B826B' stroke-width='1.6'/%3E%3Cpath d='M8 3.5v3' stroke='%237B826B' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M16 3.5v3' stroke='%237B826B' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M4 10h16' stroke='%237B826B' stroke-width='1.6'/%3E%3Cpath d='M8 14h3M8 17h6' stroke='%237B826B' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card:nth-child(4) .icon-circle::before {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='3.8' stroke='%237B826B' stroke-width='1.6'/%3E%3Cpath d='M5 20c.8-4.5 3.4-7 7-7s6.2 2.5 7 7' stroke='%237B826B' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-card {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 130, 107, 0.3);
  box-shadow: 0 24px 60px rgba(51, 51, 51, 0.12);
}
.site-header {
  min-height: 76px;
  padding: 14px 6%;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-header .logo-image {
  display: block !important;
  width: 46px !important;
  height: 46px !important;
  max-width: 46px !important;
  max-height: 46px !important;
  object-fit: contain !important;
  flex: 0 0 46px;
}

.site-header .logo strong {
  display: block;
  font-size: 21px;
  line-height: 1;
}

.site-header .logo span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 3px;
  line-height: 1;
}

.footer-logo .logo-image {
  display: block !important;
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  flex: 0 0 54px;
}

.logo-mark {
  display: none !important;
}
.site-header .logo strong,
.footer-logo strong {
  font-family: "Allura", cursive;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.site-header .logo span,
.footer-logo span {
  margin-top: 8px;
  letter-spacing: 3.5px;
}

.site-header .logo {
  gap: 14px;
  min-width: 260px;
}

@media (max-width: 900px) {
  .site-header .logo strong,
  .footer-logo strong {
    font-size: 36px;
  }

  .site-header .logo {
    min-width: auto;
  }
}

@media (max-width: 620px) {
  .site-header .logo strong,
  .footer-logo strong {
    font-size: 32px;
  }

  .site-header .logo span,
  .footer-logo span {
    font-size: 9px;
    letter-spacing: 2.5px;
  }
}
.form-message {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.form-message.success {
  color: #3f6f4e;
}

.form-message.error {
  color: #9f3a38;
}

.booking-form button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.tip-image.has-thumbnail {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f2eee6;
}
.tip-image.tip-image-thumbnail {
  height: auto;
  min-height: 0;
  background: #f2eee6;
  overflow: hidden;
}

.tip-image.tip-image-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.post-content-heading {
  margin: 28px 0 12px;
  color: #2d2d2d;
  font-size: 24px;
  line-height: 1.2;
}

.post-content-image {
  margin: 24px 0;
}

.post-content-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.post-content-image figcaption {
  margin-top: 8px;
  color: #6d6a63;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.gallery-modal-panel {
  width: min(1180px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.gallery-modal-header {
  padding: 34px 38px 26px;
}

.gallery-modal-header h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.gallery-modal-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 260px)) !important;
  justify-content: center;
  gap: 18px;
  padding: 28px 38px 38px;
}

.gallery-modal-item {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #eee8de;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(42, 31, 24, 0.12);
}

.gallery-modal-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-modal-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 760px) {
  .gallery-modal-panel {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
  }

  .gallery-modal-header {
    padding: 26px 22px 20px;
  }

  .gallery-modal-header h2 {
    font-size: 38px;
  }

  .gallery-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
    padding: 20px 22px 26px;
  }

  .gallery-modal-item {
    border-radius: 14px;
  }
}

@media (max-width: 460px) {
  .gallery-modal-grid {
    grid-template-columns: 1fr !important;
  }
}
.hero-intro-card {
  position: relative;
  max-width: 720px;
  margin: 0 0 34px;
  padding: 26px 30px 26px 34px;
  border-radius: 28px;
  background: rgba(255, 250, 245, 0.78);
  border: 1px solid rgba(132, 138, 113, 0.18);
  box-shadow:
    0 18px 40px rgba(43, 35, 28, 0.10),
    0 4px 14px rgba(43, 35, 28, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-intro-card::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 5px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, #8b9272 0%, #b9bda8 100%);
}

.hero-intro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-intro-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #3c342f;
  font-size: 1.08rem;
  line-height: 1.85;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-intro-card {
    max-width: 100%;
    padding: 22px 22px 22px 28px;
    border-radius: 22px;
    margin-bottom: 28px;
  }

  .hero-intro-card::before {
    top: 18px;
    bottom: 18px;
  }

  .hero-intro-card p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (max-width: 600px) {
  .hero-intro-card {
    padding: 20px 18px 20px 24px;
    border-radius: 18px;
  }

  .hero-intro-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}
.hero-editorial-note {
  position: relative;
  width: min(650px, 100%);
  margin: 0 0 34px;
  padding: 28px 34px 30px;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.84), rgba(255, 250, 245, 0.58)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 250, 245, 0.72);
  border-radius: 4px 34px 34px 4px;
  box-shadow:
    0 28px 70px rgba(42, 31, 24, 0.13),
    0 10px 24px rgba(42, 31, 24, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-editorial-note::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 3px;
  background: #6f765f;
}

.hero-editorial-note::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 82px;
  height: 1px;
  background: rgba(111, 118, 95, 0.42);
}

.hero-editorial-kicker {
  display: block;
  margin-bottom: 12px;
  color: #6f765f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-content .hero-editorial-note p {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 560px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #302b27;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .hero-editorial-note {
    width: 100%;
    padding: 24px 26px 26px;
    border-radius: 4px 26px 26px 4px;
  }

  .hero-content .hero-editorial-note p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (max-width: 600px) {
  .hero-editorial-note {
    padding: 22px 22px 24px;
    border-radius: 4px 22px 22px 4px;
  }

  .hero-editorial-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }
}
.hero-subcopy {
  width: min(620px, 100%);
  margin: 0 0 34px;
  padding: 0 0 0 22px;
  border-left: 2px solid rgba(111, 118, 95, 0.72);
}

.hero-content .hero-subcopy p {
  margin: 0;
  max-width: 590px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #302d29;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

.hero-subcopy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-subcopy-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(111, 118, 95, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.34);
  color: #5f6653;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
  .hero-subcopy {
    margin-bottom: 30px;
    padding-left: 18px;
  }

  .hero-content .hero-subcopy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-subcopy-tags span {
    min-height: 32px;
    padding: 0 13px;
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .hero-subcopy {
    padding-left: 16px;
  }

  .hero-subcopy-tags {
    gap: 8px;
    margin-top: 15px;
  }
}
@media (max-width: 760px) {
  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 22px 16px;
    background: rgba(255, 250, 245, 0.96);
    border-bottom: 1px solid rgba(93, 68, 54, 0.08);
  }

  .logo {
    justify-content: center;
    gap: 12px;
  }

  .logo-image {
    width: 54px;
    height: 54px;
  }

  .logo strong {
    font-size: 34px;
    line-height: 0.9;
  }

  .logo span {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .nav-button {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    order: 2;
    border-radius: 999px;
    font-size: 15px;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 2px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .nav-menu a {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100svh - 178px);
    padding: 54px 22px 34px;
    align-items: flex-start;
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(255, 250, 245, 0.96) 0%,
        rgba(255, 250, 245, 0.88) 42%,
        rgba(255, 250, 245, 0.54) 100%
      );
  }

  .hero-slide img {
    object-position: 58% center;
    filter: saturate(0.88) contrast(0.95);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-content .eyebrow {
    max-width: 320px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.32em;
  }

  .hero-content h1 {
    max-width: 390px;
    font-size: clamp(48px, 15vw, 68px);
    line-height: 0.94;
    letter-spacing: -0.04em;
  }

  .hero-divider {
    width: 92px;
    height: 8px;
    margin: 26px 0 26px;
    background: rgba(111, 118, 95, 0.45);
  }

  .hero-subcopy {
    width: 100%;
    max-width: 380px;
    margin: 0 0 28px;
    padding: 0 0 0 16px;
    border-left: 2px solid rgba(111, 118, 95, 0.78);
  }

  .hero-content .hero-subcopy p {
    color: #2f2b27;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
  }

  .hero-subcopy-tags {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-subcopy-tags span {
    min-height: 30px;
    padding: 0 12px;
    background: rgba(255, 250, 245, 0.58);
    border-color: rgba(111, 118, 95, 0.32);
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: 380px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 15px;
  }

  .slider-arrow {
    display: none;
  }

  .slider-dots {
    bottom: 16px;
  }
}
@media (max-width: 390px) {
  .site-header {
    padding: 16px 18px 14px;
  }

  .logo strong {
    font-size: 30px;
  }

  .logo-image {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding: 42px 20px 32px;
    min-height: calc(100svh - 170px);
  }

  .hero-content h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

  .hero-content .eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .hero-content .hero-subcopy p {
    font-size: 14px;
    line-height: 1.7;
  }
}
@media (max-width: 760px) {
  .site-header {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 18px !important;
    background: #fffaf5 !important;
    border-bottom: 1px solid rgba(93, 68, 54, 0.08) !important;
  }

  .logo {
    justify-content: flex-start !important;
    gap: 10px !important;
    min-width: 0 !important;
  }

  .logo-image {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 auto !important;
  }

  .logo strong {
    font-size: 29px !important;
    line-height: 0.9 !important;
    white-space: nowrap !important;
  }

  .logo span {
    margin-top: 5px !important;
    font-size: 8px !important;
    letter-spacing: 0.22em !important;
    white-space: nowrap !important;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-button {
    width: auto !important;
    min-height: 40px !important;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .hero {
    display: flex !important;
    flex-direction: column-reverse !important;
    min-height: auto !important;
    padding: 0 20px 46px !important;
    background: #fffaf5 !important;
    overflow: hidden !important;
  }

  .hero::before {
    display: none !important;
  }

  .hero-slider {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 280px !important;
    margin: 28px 0 0 !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow:
      0 22px 50px rgba(42, 31, 24, 0.18),
      0 8px 20px rgba(42, 31, 24, 0.10) !important;
  }

  .hero-slider::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06) 0%,
        rgba(0, 0, 0, 0.10) 100%
      ) !important;
    z-index: 2 !important;
  }

  .hero-slide {
    position: absolute !important;
    inset: 0 !important;
  }

  .hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    filter: none !important;
  }

  .slider-arrow {
    display: none !important;
  }

  .slider-dots {
    bottom: 14px !important;
    z-index: 4 !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: none !important;
    padding: 44px 0 0 !important;
  }

  .hero-content .eyebrow {
    max-width: 330px !important;
    margin: 0 0 18px !important;
    color: #69705d !important;
    font-size: 11px !important;
    line-height: 1.7 !important;
    letter-spacing: 0.28em !important;
  }

  .hero-content h1 {
    max-width: 380px !important;
    margin: 0 !important;
    color: #2d2d2b !important;
    font-size: clamp(42px, 13vw, 58px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.045em !important;
  }

  .hero-divider {
    width: 72px !important;
    height: 5px !important;
    margin: 24px 0 22px !important;
    background: #7b826b !important;
    opacity: 0.65 !important;
  }

  .hero-subcopy,
  .hero-editorial-note {
    width: 100% !important;
    max-width: 370px !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-subcopy::before,
  .hero-subcopy::after,
  .hero-editorial-note::before,
  .hero-editorial-note::after {
    display: none !important;
  }

  .hero-content .hero-subcopy p,
  .hero-content .hero-editorial-note p {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 360px !important;
    color: #4c4741 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .hero-editorial-kicker {
    display: none !important;
  }

  .hero-subcopy-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .hero-subcopy-tags span {
    min-height: 30px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(111, 118, 95, 0.25) !important;
    background: rgba(123, 130, 107, 0.10) !important;
    color: #5f6653 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
  }

  .hero-buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 370px !important;
  }

  .primary-button,
  .secondary-button {
    width: 100% !important;
    min-height: 50px !important;
    justify-content: center !important;
    font-size: 15px !important;
  }

  .secondary-button {
    background: transparent !important;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding: 12px 14px !important;
  }

  .logo-image {
    width: 40px !important;
    height: 40px !important;
  }

  .logo strong {
    font-size: 25px !important;
  }

  .logo span {
    font-size: 7px !important;
    letter-spacing: 0.18em !important;
  }

  .nav-button {
    min-height: 38px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }

  .hero {
    padding: 0 16px 40px !important;
  }

  .hero-content {
    padding-top: 36px !important;
  }

  .hero-content h1 {
    font-size: clamp(39px, 12.5vw, 52px) !important;
  }

  .hero-slider {
    height: 250px !important;
    border-radius: 24px !important;
  }
}
@media (max-width: 760px) {
  .hero-content {
    padding-top: 32px !important;
  }

  .hero-content .eyebrow {
    margin-bottom: 14px !important;
  }

  .hero-content h1 {
    max-width: 360px !important;
    font-size: clamp(40px, 12vw, 54px) !important;
    line-height: 0.98 !important;
  }

  .hero-divider {
    margin: 22px 0 20px !important;
  }

  .hero-subcopy {
    margin-bottom: 24px !important;
  }

  .hero-buttons {
    gap: 10px !important;
  }

  .hero-slider {
    margin-top: 24px !important;
    height: 300px !important;
  }

  .hero-slide img {
    opacity: 1 !important;
    filter: saturate(1.02) contrast(1.02) !important;
  }
}

@media (max-width: 390px) {
  .hero-content {
    padding-top: 28px !important;
  }

  .hero-content h1 {
    font-size: clamp(37px, 11.5vw, 49px) !important;
  }

  .hero-slider {
    height: 270px !important;
  }
}
@media (max-width: 760px) {
  .hero-slider::before,
  .hero-slider::after {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  .hero-slider {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 300px !important;
    margin: 24px 0 0 !important;
    border: 1px solid rgba(93, 68, 54, 0.08) !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    background: #f4efe8 !important;
    box-shadow:
      0 18px 40px rgba(42, 31, 24, 0.12),
      0 6px 18px rgba(42, 31, 24, 0.08) !important;
  }

  .hero-slide {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    transform: none !important;
    transition: opacity 700ms ease !important;
  }

  .hero-slide.active {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .slider-dots {
    bottom: 14px !important;
    z-index: 6 !important;
  }

  .slider-dot {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 250, 245, 0.72) !important;
    box-shadow: 0 1px 6px rgba(42, 31, 24, 0.22) !important;
  }

  .slider-dot.active {
    width: 24px !important;
    background: #fffaf5 !important;
  }
}

@media (max-width: 390px) {
  .hero-slider {
    height: 270px !important;
    border-radius: 24px !important;
  }
}
/* =========================================================
   FINAL MOBILE POLISH OVERRIDES
   Keep this block at the very end of the file.
   ========================================================= */

@media (max-width: 760px) {
  body .section {
    padding: 44px 20px !important;
  }

  body #pricing.section {
    padding-top: 42px !important;
    padding-bottom: 46px !important;
  }

  body #pricing .section-heading.centre {
    max-width: 340px !important;
    margin-bottom: 24px !important;
  }

  body #pricing .section-heading .eyebrow {
    margin-bottom: 10px !important;
    color: #777164 !important;
    font-size: 10px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.30em !important;
  }

  body #pricing .section-heading h2 {
    max-width: 330px !important;
    margin: 0 auto 16px !important;
    color: #2d2d2b !important;
    font-size: clamp(31px, 8.3vw, 37px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
  }

  body #pricing .section-heading p {
    max-width: 330px !important;
    margin: 0 auto !important;
    color: #6b655d !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  body #pricing .pricing-grid {
    gap: 16px !important;
  }

  body #pricing .price-card {
    padding: 24px 22px !important;
    border-radius: 22px !important;
    box-shadow: 0 14px 34px rgba(42, 31, 24, 0.08) !important;
  }

  body #pricing .price-card h3 {
    margin: 0 0 16px !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
  }

  body #pricing .price {
    margin: 0 0 12px !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
  }

  body #pricing .price-note {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  body #pricing .price-card ul {
    gap: 8px !important;
    margin: 18px 0 20px !important;
  }

  body #pricing .price-card li {
    padding-left: 24px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  body #pricing .price-card .card-button {
    min-height: 46px !important;
    margin-top: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    font-size: 14px !important;
  }

  body #pricing .pricing-note-block {
    margin-top: 20px !important;
  }

  body #pricing .pricing-note-block p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  body #gallery.section {
    padding-top: 46px !important;
    padding-bottom: 48px !important;
  }

  body #gallery .split-heading {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  body #gallery .split-heading .eyebrow {
    margin-bottom: 10px !important;
    color: #777164 !important;
    font-size: 10px !important;
    letter-spacing: 0.30em !important;
  }

  body #gallery .split-heading h2 {
    margin: 0 !important;
    font-size: clamp(34px, 9vw, 42px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
  }

  body #gallery .split-heading p {
    max-width: 330px !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  body #gallery .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    grid-auto-rows: auto !important;
  }

  body #gallery .gallery-card,
  body #gallery .gallery-card.large {
    min-height: 210px !important;
    height: 210px !important;
    grid-row: auto !important;
    border-radius: 22px !important;
    padding: 20px !important;
  }

  body #gallery .gallery-card-content span {
    font-size: 27px !important;
    line-height: 1 !important;
  }

  body #gallery .gallery-card-content small {
    font-size: 13px !important;
  }
}

@media (max-width: 390px) {
  body .section {
    padding: 40px 18px !important;
  }

  body #pricing .section-heading h2 {
    font-size: clamp(29px, 8vw, 34px) !important;
  }

  body #pricing .price-card {
    padding: 22px 20px !important;
  }

  body #pricing .price {
    font-size: 32px !important;
  }

  body #gallery .gallery-card,
  body #gallery .gallery-card.large {
    height: 200px !important;
    min-height: 200px !important;
  }
}
@media (max-width: 760px) {
  .contact-section {
    padding-top: 54px !important;
    padding-bottom: 58px !important;
  }

  .booking-form {
    padding: 24px !important;
    border-radius: 26px !important;
    gap: 14px !important;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 50px !important;
    border-radius: 15px !important;
    font-size: 15px !important;
    background: #fffdf9 !important;
  }

  .booking-form textarea {
    min-height: 132px !important;
    line-height: 1.45 !important;
  }

  .booking-form button {
    min-height: 50px !important;
    margin-top: 8px !important;
    font-size: 15px !important;
  }

  .form-message {
    margin: 2px 0 4px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .form-message:empty {
    display: none !important;
  }

  .form-message.success {
    display: block !important;
    background: rgba(63, 111, 78, 0.10) !important;
    border: 1px solid rgba(63, 111, 78, 0.18) !important;
    color: #315f3e !important;
  }

  .form-message.error {
    display: block !important;
    background: rgba(159, 58, 56, 0.08) !important;
    border: 1px solid rgba(159, 58, 56, 0.18) !important;
    color: #8a302f !important;
  }
}

.booking-form input:-webkit-autofill,
.booking-form input:-webkit-autofill:hover,
.booking-form input:-webkit-autofill:focus,
.booking-form textarea:-webkit-autofill,
.booking-form textarea:-webkit-autofill:hover,
.booking-form textarea:-webkit-autofill:focus,
.booking-form select:-webkit-autofill,
.booking-form select:-webkit-autofill:hover,
.booking-form select:-webkit-autofill:focus {
  -webkit-text-fill-color: #333333 !important;
  box-shadow: 0 0 0 1000px #fffdf9 inset !important;
  transition: background-color 9999s ease-in-out 0s !important;
}
/* Dark premium header */
.site-header {
  background:
    linear-gradient(135deg, #3f4738 0%, #566047 52%, #6f765f 100%) !important;
  border-bottom: 1px solid rgba(255, 250, 245, 0.18) !important;
  box-shadow: 0 12px 34px rgba(42, 31, 24, 0.22) !important;
  backdrop-filter: blur(14px) !important;
}

.site-header .logo {
  color: #fffaf5 !important;
}

.site-header .logo-image {
  background: #fffaf5 !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 18px rgba(42, 31, 24, 0.24) !important;
}

.site-header .logo strong {
  color: #fffaf5 !important;
  text-shadow: 0 2px 12px rgba(42, 31, 24, 0.28) !important;
}

.site-header .logo span {
  color: rgba(255, 250, 245, 0.78) !important;
}

.site-header .nav-menu a {
  color: rgba(255, 250, 245, 0.82) !important;
}

.site-header .nav-menu a:hover {
  color: #ffffff !important;
}

.site-header .nav-button {
  background: #fffaf5 !important;
  color: #3f4738 !important;
  box-shadow: 0 10px 24px rgba(42, 31, 24, 0.20) !important;
}

.site-header .nav-button:hover {
  background: #f0eadf !important;
  color: #2f362a !important;
}

/* Mobile header */
@media (max-width: 760px) {
  .site-header {
    background:
      linear-gradient(135deg, #3f4738 0%, #566047 100%) !important;
    border-bottom: 1px solid rgba(255, 250, 245, 0.18) !important;
  }

  .site-header .logo strong {
    color: #fffaf5 !important;
  }

  .site-header .logo span {
    color: rgba(255, 250, 245, 0.76) !important;
  }

  .site-header .nav-button {
    background: #fffaf5 !important;
    color: #3f4738 !important;
  }
}

/* =========================================================
   STATIC HERO DUO IMAGE
   Replaces the old background slider with a fixed landing image.
   Keep this block at the very end of the file.
   ========================================================= */

.hero.hero-static {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr) !important;
  align-items: center !important;
  gap: clamp(34px, 5vw, 74px) !important;
  min-height: calc(100vh - 76px) !important;
  padding: clamp(72px, 7vw, 104px) 6% clamp(54px, 6vw, 86px) !important;
  background:
    radial-gradient(circle at 78% 54%, rgba(123, 130, 107, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(239, 232, 220, 0.88) 0%, rgba(247, 244, 238, 1) 48%, rgba(239, 232, 220, 0.74) 100%) !important;
  overflow: hidden !important;
}

.hero.hero-static::before {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -34vw;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(123, 130, 107, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.32);
  pointer-events: none;
}

.hero.hero-static::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 18%;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(123, 130, 107, 0.08);
  filter: blur(2px);
  pointer-events: none;
}

.hero.hero-static .hero-content {
  position: relative !important;
  z-index: 4 !important;
  max-width: 640px !important;
  padding: 0 !important;
}

.hero.hero-static .hero-static-visual {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 560px;
}

.hero.hero-static .hero-static-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: min(520px, 92%);
  height: min(520px, 92%);
  border: 1px solid rgba(98, 105, 84, 0.18);
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 34px 90px rgba(42, 31, 24, 0.10);
}

.hero.hero-static .hero-static-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(620px, 100%);
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 34px 54px rgba(42, 31, 24, 0.20));
}

.hero.hero-static .hero-editorial-note {
  margin-bottom: 0;
}

.hero.hero-static .hero-buttons {
  margin-top: 34px;
}

.hero.hero-static .slider-arrow,
.hero.hero-static .slider-dots,
.hero.hero-static .hero-slider {
  display: none !important;
}

@media (max-width: 1150px) {
  .hero.hero-static {
    grid-template-columns: 1fr 0.86fr !important;
    gap: 30px !important;
  }

  .hero.hero-static .hero-static-visual {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .hero.hero-static {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 54px 6% 42px !important;
  }

  .hero.hero-static .hero-content {
    max-width: 680px !important;
  }

  .hero.hero-static .hero-static-visual {
    min-height: auto;
    margin-top: 10px;
  }

  .hero.hero-static .hero-static-visual::before {
    bottom: 2%;
    width: min(480px, 86vw);
    height: min(480px, 86vw);
  }

  .hero.hero-static .hero-static-visual img {
    width: min(520px, 96%);
    max-height: none;
  }
}

@media (max-width: 760px) {
  .hero.hero-static {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding: 38px 20px 42px !important;
    background:
      radial-gradient(circle at 70% 78%, rgba(123, 130, 107, 0.20), transparent 38%),
      linear-gradient(135deg, #fffaf5 0%, #f2ece3 100%) !important;
  }

  .hero.hero-static::before {
    right: -52vw;
    bottom: -44vw;
    width: 100vw;
    height: 100vw;
  }

  .hero.hero-static::after {
    display: none;
  }

  .hero.hero-static .hero-content {
    width: 100% !important;
    max-width: 390px !important;
    padding: 0 !important;
    align-self: flex-start;
  }

  .hero.hero-static .hero-content .eyebrow {
    max-width: 330px !important;
    margin: 0 0 15px !important;
    color: #69705d !important;
    font-size: 11px !important;
    line-height: 1.7 !important;
    letter-spacing: 0.28em !important;
  }

  .hero.hero-static .hero-content h1 {
    max-width: 390px !important;
    margin: 0 !important;
    color: #2d2d2b !important;
    font-size: clamp(39px, 11vw, 54px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
  }

  .hero.hero-static .hero-divider {
    width: 72px !important;
    height: 5px !important;
    margin: 22px 0 20px !important;
    background: #7b826b !important;
    opacity: 0.65 !important;
  }

  .hero.hero-static .hero-editorial-note {
    width: 100% !important;
    max-width: 370px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero.hero-static .hero-editorial-note::before,
  .hero.hero-static .hero-editorial-note::after {
    display: none !important;
  }

  .hero.hero-static .hero-editorial-kicker {
    display: none !important;
  }

  .hero.hero-static .hero-content .hero-editorial-note p {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 360px !important;
    color: #4c4741 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .hero.hero-static .hero-buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 370px !important;
    margin-top: 26px !important;
  }

  .hero.hero-static .primary-button,
  .hero.hero-static .secondary-button {
    width: 100% !important;
    min-height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
  }

  .hero.hero-static .secondary-button {
    background: transparent !important;
  }

  .hero.hero-static .hero-static-visual {
    width: 100%;
    margin: 0 auto;
    min-height: auto;
  }

  .hero.hero-static .hero-static-visual::before {
    bottom: 0;
    width: min(360px, 88vw);
    height: min(360px, 88vw);
  }

  .hero.hero-static .hero-static-visual img {
    width: min(380px, 100%);
    filter: drop-shadow(0 20px 34px rgba(42, 31, 24, 0.18));
  }
}

@media (max-width: 390px) {
  .hero.hero-static {
    padding: 34px 16px 38px !important;
  }

  .hero.hero-static .hero-content h1 {
    font-size: clamp(36px, 10.5vw, 48px) !important;
  }

  .hero.hero-static .hero-static-visual img {
    width: min(340px, 100%);
  }
}


/* Services section with managed photo slider */
.services-showcase-section {
  margin-top: 0 !important;
  padding-top: 88px !important;
  padding-bottom: 92px !important;
  background:
    radial-gradient(circle at 84% 56%, rgba(123, 130, 107, 0.12), transparent 28%),
    var(--cream) !important;
}

.services-main-heading {
  max-width: 840px !important;
  margin-bottom: 44px !important;
}

.services-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.service-card-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-content: stretch;
}

.service-card-grid .service-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-photo-showcase {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(111, 118, 95, 0.18), rgba(255, 250, 245, 0.42)),
    #e9e1d4;
  box-shadow:
    0 28px 68px rgba(42, 31, 24, 0.16),
    0 8px 22px rgba(42, 31, 24, 0.08);
}

.services-photo-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 245, 0.36);
  border-radius: 26px;
  pointer-events: none;
}

.services-photo-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 22, 17, 0.04) 0%, rgba(18, 22, 17, 0.18) 48%, rgba(18, 22, 17, 0.55) 100%),
    linear-gradient(90deg, rgba(123, 130, 107, 0.18), transparent 50%);
  pointer-events: none;
}

.services-hero-slider {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
}

.services-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.services-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.services-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.services-slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.58);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(42, 31, 24, 0.24);
}

.services-slider-dot.active {
  width: 28px;
  background: #fffaf5;
}

.services-showcase-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 56px;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 250, 245, 0.22);
  border-radius: 22px;
  background: rgba(38, 41, 33, 0.42);
  color: #fffaf5;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.services-showcase-label span {
  color: rgba(255, 250, 245, 0.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.services-showcase-label strong {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.12;
}

@media (max-width: 1150px) {
  .services-showcase-layout {
    grid-template-columns: 1fr;
  }

  .services-photo-showcase {
    min-height: 420px;
  }

  .service-card-grid .service-card {
    aspect-ratio: auto;
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .services-showcase-section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .services-main-heading {
    margin-bottom: 28px !important;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .service-card-grid .service-card {
    min-height: 190px;
    padding: 20px 16px;
    border-radius: 22px;
  }

  .service-card-grid .service-card h3 {
    font-size: 18px;
    line-height: 1.15;
  }

  .service-card-grid .service-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .services-photo-showcase {
    min-height: 340px;
    border-radius: 28px;
  }

  .services-showcase-label {
    left: 18px;
    right: 18px;
    bottom: 46px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .services-showcase-label strong {
    font-size: 20px;
  }

  .services-slider-dots {
    bottom: 18px;
  }
}

@media (max-width: 520px) {
  .service-card-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card-grid .service-card {
    min-height: 0;
    aspect-ratio: auto;
  }

  .services-photo-showcase {
    min-height: 300px;
  }
}


/* =========================================================
   CONTENT POLISH: CONTACT AND EXPECTATION CARDS
   ========================================================= */

.contact-highlights {
  display: grid;
  gap: 12px;
  margin: 28px 0 26px;
}

.contact-highlights div {
  padding: 16px 18px;
  border: 1px solid rgba(123, 130, 107, 0.18);
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.58);
  box-shadow: 0 12px 28px rgba(42, 31, 24, 0.06);
}

.contact-highlights strong {
  display: block;
  margin-bottom: 4px;
  color: #3f4738;
  font-family: Georgia, serif;
  font-size: 17px;
}

.contact-highlights span {
  display: block;
  color: #6f6a61;
  font-size: 14px;
  line-height: 1.55;
}

.booking-form {
  position: relative;
  overflow: hidden;
}

.booking-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #7b826b, #b9bda8, #7b826b);
  opacity: 0.75;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(98, 105, 84, 0.58);
  box-shadow: 0 0 0 4px rgba(123, 130, 107, 0.10);
}

.testimonial-card strong {
  color: #3f4738;
}

@media (max-width: 760px) {
  .contact-highlights {
    margin: 22px 0 22px;
  }

  .contact-highlights div {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .contact-highlights strong {
    font-size: 16px;
  }

  .contact-highlights span {
    font-size: 13px;
  }
}
/* Increase static hero photographer image size */
.hero.hero-static {
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.12fr) !important;
  gap: clamp(24px, 4vw, 58px) !important;
}

.hero.hero-static .hero-static-visual {
  min-height: 650px !important;
  margin-right: -3vw !important;
}

.hero.hero-static .hero-static-visual::before {
  width: min(640px, 100%) !important;
  height: min(640px, 100%) !important;
}

.hero.hero-static .hero-static-visual img {
  width: min(780px, 118%) !important;
  max-height: 780px !important;
}

/* Tablet */
@media (max-width: 1150px) {
  .hero.hero-static .hero-static-visual {
    min-height: 570px !important;
    margin-right: -2vw !important;
  }

  .hero.hero-static .hero-static-visual img {
    width: min(660px, 110%) !important;
    max-height: 680px !important;
  }

  .hero.hero-static .hero-static-visual::before {
    width: min(560px, 92%) !important;
    height: min(560px, 92%) !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .hero.hero-static .hero-static-visual {
    margin-right: 0 !important;
  }

  .hero.hero-static .hero-static-visual img {
    width: min(430px, 112%) !important;
  }

  .hero.hero-static .hero-static-visual::before {
    width: min(390px, 92vw) !important;
    height: min(390px, 92vw) !important;
  }
}

@media (max-width: 390px) {
  .hero.hero-static .hero-static-visual img {
    width: min(380px, 112%) !important;
  }
}
/* Final mobile gallery modal thumbnail fix */
@media (max-width: 760px) {
  .gallery-modal {
    overflow: hidden !important;
  }

  .gallery-modal-panel {
    inset: 14px !important;
    width: auto !important;
    max-width: none !important;
    height: calc(100vh - 28px) !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    border-radius: 24px !important;
  }

  .gallery-modal-header {
    flex: 0 0 auto !important;
    padding: 24px 22px 18px !important;
  }

  .gallery-modal-header h2 {
    font-size: clamp(32px, 9vw, 46px) !important;
    line-height: 0.95 !important;
  }

  .gallery-modal-close {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
  }

  .gallery-modal-grid {
    flex: 1 1 auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    align-items: start !important;
    gap: 12px !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 18px 22px 24px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .gallery-modal-item {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    background: #eee8de !important;
  }

  .gallery-modal-item img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

@media (max-width: 360px) {
  .gallery-modal-panel {
    inset: 10px !important;
    height: calc(100vh - 20px) !important;
    border-radius: 20px !important;
  }

  .gallery-modal-header {
    padding: 22px 18px 16px !important;
  }

  .gallery-modal-grid {
    gap: 10px !important;
    padding: 16px 18px 22px !important;
  }

  .gallery-modal-item {
    border-radius: 13px !important;
  }
}