/* Preview V2 — screenshot-inspired layout (does not affect live site styles) */

:root {
  --pv2-teal: #1a8a8f;
  --pv2-teal-mid: #157a7e;
  --pv2-teal-deep: #0f5c60;
  --pv2-navy: #0c3d4a;
  --pv2-navy-deep: #082a33;
  --pv2-ink: #1a2b32;
  --pv2-muted: #5c6b72;
  --pv2-line: #d9e2e5;
  --pv2-paper: #ffffff;
  --pv2-mist: #f4f7f8;
}

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

html {
  scroll-behavior: smooth;
}

body.preview-v2 {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--pv2-ink);
  background: var(--pv2-paper);
  line-height: 1.6;
}

body.preview-v2 h1,
body.preview-v2 h2,
body.preview-v2 h3,
body.preview-v2 h4 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

body.preview-v2 a {
  color: var(--pv2-teal);
  text-decoration: none;
}

body.preview-v2 a:hover {
  text-decoration: underline;
}

body.preview-v2 img {
  max-width: 100%;
  display: block;
}

.pv2-container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.pv2-section-title {
  text-align: center;
  color: var(--pv2-ink);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.pv2-section-subtitle {
  text-align: center;
  color: var(--pv2-muted);
  margin: 0 auto 2rem;
  max-width: 40rem;
}

/* Preview-only banner */
.preview-banner {
  position: relative;
  z-index: 2000;
  background: #fff7e6;
  color: #6b4e00;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid #f0d58a;
}

.preview-banner a {
  color: #6b4e00;
  font-weight: 700;
  margin-left: 0.5rem;
  text-decoration: underline;
}

/* Buttons */
.pv2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.35rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pv2-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

body.preview-v2 a.pv2-btn-primary,
body.preview-v2 a.pv2-btn-teal,
body.preview-v2 .pv2-btn-primary,
body.preview-v2 .pv2-btn-teal {
  background: var(--pv2-teal);
  color: #ffffff;
}

body.preview-v2 a.pv2-btn-primary:hover,
body.preview-v2 a.pv2-btn-teal:hover,
body.preview-v2 .pv2-btn-primary:hover,
body.preview-v2 .pv2-btn-teal:hover {
  background: var(--pv2-teal-deep);
  color: #ffffff;
}

body.preview-v2 a.pv2-btn-navy,
body.preview-v2 .pv2-btn-navy {
  background: var(--pv2-navy);
  color: #ffffff;
}

body.preview-v2 a.pv2-btn-navy:hover,
body.preview-v2 .pv2-btn-navy:hover {
  background: var(--pv2-navy-deep);
  color: #ffffff;
}

body.preview-v2 a.pv2-btn-ghost,
body.preview-v2 a.pv2-btn-outline-light,
.pv2-btn-ghost,
.pv2-btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

body.preview-v2 a.pv2-btn-ghost:hover,
body.preview-v2 a.pv2-btn-outline-light:hover,
.pv2-btn-ghost:hover,
.pv2-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Hero */
.pv2-hero {
  position: relative;
  min-height: min(90vh, 820px);
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: visible;
}

.pv2-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 61, 74, 0.35), rgba(26, 138, 143, 0.2)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1920&q=80")
      center / cover no-repeat;
  transform: scale(1.02);
  animation: pv2HeroDrift 18s ease-in-out infinite alternate;
  z-index: 0;
  overflow: hidden;
}

.pv2-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 42, 51, 0.5) 0%, rgba(8, 42, 51, 0.4) 45%, rgba(8, 42, 51, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

@keyframes pv2HeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}

/* High-contrast nav bar — outside hero so mobile menu stays above page content */
.pv2-topbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  background: rgba(8, 42, 51, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.pv2-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: fit-content;
  max-width: min(100%, 48vw);
  text-decoration: none;
  background: #fff;
  padding: 0.3rem 0.45rem;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pv2-brand:hover {
  text-decoration: none;
}

.pv2-brand picture {
  display: block;
  line-height: 0;
}

.pv2-logo {
  height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.pv2-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem;
}

.pv2-nav a {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 0.7rem;
  border-radius: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: background 0.2s ease;
}

.pv2-nav a:hover,
.pv2-nav a.is-active {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.18);
}

.pv2-nav-book {
  border: 2px solid #fff;
  background: var(--pv2-teal);
  color: #fff;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  margin-left: 0.35rem;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pv2-nav-book:hover {
  background: var(--pv2-teal-deep);
  transform: translateY(-1px);
}

.pv2-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  cursor: pointer;
  padding: 0.55rem 0.6rem;
}

.pv2-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

.pv2-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: min(840px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3rem 0 7rem;
  animation: pv2FadeUp 0.9s ease both;
  isolation: isolate;
}

@keyframes pv2FadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.pv2-hero-brand-line {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.pv2-hero-content h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.pv2-hero-sub {
  margin: 0 0 1.1rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.pv2-hero-features {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 36rem;
}

.pv2-hero-features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.96);
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.pv2-hero-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #7fd4d8;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.pv2-hero-message {
  margin: 0 0 1.4rem;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.pv2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Featured circles */
.pv2-circles-wrap {
  position: relative;
  z-index: 4;
  margin-top: -5.5rem;
  padding: 0 1.25rem 2.5rem;
}

.pv2-circles {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pv2-circle {
  background: var(--pv2-paper);
  border-radius: 50%;
  aspect-ratio: 1;
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 2.1rem 1.6rem;
  text-align: center;
  box-shadow: 0 14px 40px rgba(12, 61, 74, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: pv2FadeUp 0.8s ease both;
}

.pv2-circle:nth-child(1) { animation-delay: 0.1s; }
.pv2-circle:nth-child(2) { animation-delay: 0.2s; }
.pv2-circle:nth-child(3) { animation-delay: 0.3s; }

.pv2-circle-icon {
  color: #7eb8c0;
  margin-bottom: 0.65rem;
}

.pv2-circle h3 {
  font-size: 1.15rem;
  color: #0c3d4a;
  margin-bottom: 0.45rem;
}

.pv2-circle p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  color: #334851;
  max-width: 14.5rem;
}

/* Shared circle CTA — identical on all three cards */
body.preview-v2 a.pv2-circle-btn,
body.preview-v2 a.pv2-circle-btn:link,
body.preview-v2 a.pv2-circle-btn:visited,
body.preview-v2 a.pv2-circle-btn:hover,
body.preview-v2 a.pv2-circle-btn:active,
.pv2-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  background: #1a8a8f !important;
  color: #ffffff !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.preview-v2 a.pv2-circle-btn:hover,
.pv2-circle-btn:hover {
  background: #0f5c60 !important;
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Full services grid */
.pv2-services {
  background: var(--pv2-paper);
  padding: 2rem 0 4.5rem;
}

.pv2-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.pv2-service-card {
  background: var(--pv2-mist);
  border: 1px solid var(--pv2-line);
  padding: 1.6rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pv2-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 61, 74, 0.1);
}

.pv2-service-icon {
  color: var(--pv2-teal);
  margin-bottom: 0.85rem;
}

.pv2-service-card h3 {
  font-size: 1.15rem;
  color: var(--pv2-ink);
  margin-bottom: 0.5rem;
}

.pv2-service-card p {
  margin: 0 0 1.15rem;
  color: var(--pv2-muted);
  flex: 1;
}

.pv2-service-card .pv2-btn {
  align-self: flex-start;
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
}

/* About band */
.pv2-about-band {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(26, 138, 143, 0.8), rgba(12, 61, 74, 0.74)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.pv2-about-band-inner {
  width: min(680px, calc(100% - 2.5rem));
  padding: 4rem 0;
}

.pv2-about-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: #fff;
}

.pv2-about-band p {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.96);
}

/* Why section */
.pv2-why {
  background: var(--pv2-paper);
  padding: 4.5rem 0;
}

.pv2-why-grid {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.pv2-why-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--pv2-ink);
  margin-bottom: 1rem;
}

.pv2-why-copy p {
  margin: 0 0 1rem;
  color: var(--pv2-muted);
  font-size: 1.02rem;
}

.pv2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0 1.35rem;
}

.pv2-stats strong {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 1.6rem;
  color: var(--pv2-teal);
  line-height: 1.1;
}

.pv2-stats span {
  font-size: 0.82rem;
  color: var(--pv2-muted);
}

.pv2-why-visual {
  min-height: 360px;
  background:
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80")
      center / cover no-repeat;
}

/* Helpful links */
.pv2-links {
  background: var(--pv2-mist);
  padding: 4rem 0;
}

.pv2-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.pv2-link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--pv2-line);
  padding: 1.35rem 1.2rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pv2-link-card:hover {
  text-decoration: none;
  border-color: var(--pv2-teal);
  transform: translateY(-2px);
}

.pv2-link-card h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  color: var(--pv2-teal);
  margin-bottom: 0.35rem;
}

.pv2-link-card p {
  margin: 0;
  color: var(--pv2-muted);
  font-size: 0.92rem;
}

/* Client corner */
.pv2-clients {
  background: var(--pv2-paper);
  padding: 4rem 0;
}

.pv2-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pv2-client-card {
  background: var(--pv2-mist);
  border: 1px solid var(--pv2-line);
  padding: 1.5rem 1.35rem;
}

.pv2-client-card h3 {
  font-size: 1.15rem;
  color: var(--pv2-teal);
}

.pv2-client-card p {
  margin: 0 0 0.75rem;
  color: var(--pv2-muted);
}

.pv2-client-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--pv2-muted);
}

.pv2-client-card li {
  margin-bottom: 0.4rem;
}

.pv2-dates {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pv2-dates strong {
  display: block;
  color: var(--pv2-navy);
  font-size: 0.95rem;
}

.pv2-dates span {
  color: var(--pv2-muted);
  font-size: 0.92rem;
}

/* Booking CTA */
.pv2-booking-cta {
  background: var(--pv2-navy);
  color: #fff;
  padding: 3rem 0;
}

.pv2-booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.pv2-booking-cta h2 {
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
}

.pv2-booking-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Contact */
.pv2-contact {
  padding: 4rem 0;
  background: var(--pv2-mist);
}

.pv2-contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.75rem;
  align-items: start;
}

.pv2-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pv2-contact-card {
  background: #fff;
  border: 1px solid var(--pv2-line);
  padding: 1.35rem 1.2rem;
}

.pv2-contact-icon {
  color: var(--pv2-teal);
  margin-bottom: 0.65rem;
}

.pv2-contact-card h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pv2-navy);
  margin-bottom: 0.45rem;
}

.pv2-contact-card p {
  margin: 0;
  color: #334851;
  font-size: 0.95rem;
  font-weight: 500;
}

.pv2-contact-card a {
  color: var(--pv2-navy);
  font-weight: 600;
}

.pv2-contact-card a:hover {
  color: var(--pv2-teal);
}

.pv2-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--pv2-line);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 10px 28px rgba(12, 61, 74, 0.08);
}

.pv2-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.pv2-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pv2-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pv2-navy);
}

.pv2-form-group input,
.pv2-form-group textarea {
  width: 100%;
  border: 1px solid #c9d5d9;
  border-radius: 4px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--pv2-ink);
  background: #fff;
}

.pv2-form-group input:focus,
.pv2-form-group textarea:focus {
  outline: 2px solid rgba(26, 138, 143, 0.35);
  border-color: var(--pv2-teal);
}

.pv2-submit-btn {
  width: 100%;
  margin-top: 0.25rem;
}

/* Footer */
.pv2-footer {
  background: var(--pv2-navy-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.25rem 0 0;
}

.pv2-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.pv2-footer h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.pv2-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pv2-footer li {
  margin-bottom: 0.45rem;
}

.pv2-footer a,
.pv2-footer button {
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.pv2-footer a:hover,
.pv2-footer button:hover {
  color: #fff;
  text-decoration: underline;
}

.pv2-footer p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
}

.pv2-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.25rem;
  text-align: center;
}

.pv2-footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Go to top — floating control for desktop and mobile */
.pv2-go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #1a8a8f;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(12, 61, 74, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 1400;
}

.pv2-go-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pv2-go-to-top:hover {
  background: #0f5c60;
}

.pv2-go-to-top:active {
  transform: translateY(1px);
}

.pv2-go-to-top svg {
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .pv2-nav a {
    font-size: 0.76rem;
    padding: 0.5rem 0.55rem;
  }
}

@media (max-width: 960px) {
  .pv2-circles {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pv2-circle {
    border-radius: 24px;
    aspect-ratio: auto;
    width: 100%;
    max-width: 420px;
    padding: 1.75rem;
  }

  .pv2-circles-wrap {
    margin-top: -3rem;
  }

  .pv2-services-grid,
  .pv2-links-grid,
  .pv2-clients-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pv2-why-grid {
    grid-template-columns: 1fr;
  }

  .pv2-why-visual {
    min-height: 260px;
    order: -1;
  }

  .pv2-contact-layout,
  .pv2-contact-cards,
  .pv2-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pv2-booking-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 820px) {
  /* Mobile-only: white header + readable dark menu */
  .pv2-topbar {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: #ffffff;
    border-bottom: 1px solid #d9e2e5;
    box-shadow: 0 4px 16px rgba(12, 61, 74, 0.08);
  }

  .pv2-brand {
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: min(100%, 70vw);
  }

  .pv2-logo {
    height: 52px;
    width: auto;
    max-width: 100%;
  }

  .pv2-nav-toggle {
    display: flex;
    z-index: 1201;
    position: relative;
    background: #f3f7f8;
    border: 1px solid #c9d5d9;
  }

  .pv2-nav-toggle span {
    background: #0c3d4a;
  }

  .pv2-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0.75rem;
    left: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border: 1px solid #d9e2e5;
    box-shadow: 0 18px 48px rgba(12, 61, 74, 0.18);
    padding: 0.4rem 0;
    z-index: 1300;
    max-height: min(70vh, 480px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pv2-nav.is-open {
    display: flex;
  }

  .pv2-nav a,
  .pv2-nav-book {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.95rem 1.15rem;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: 0.95rem;
    color: #0c3d4a;
    text-shadow: none;
    font-weight: 700;
  }

  .pv2-nav a:hover,
  .pv2-nav a.is-active,
  .pv2-nav-book:hover {
    background: #eef6f7;
    color: #0f5c60;
  }

  .pv2-nav-book {
    border-top: 1px solid #d9e2e5;
    color: #1a8a8f;
    background: #f4fbfb;
  }

  .pv2-hero {
    min-height: auto;
  }

  .pv2-hero-content {
    z-index: 2;
    align-items: flex-start;
    text-align: left;
    padding: 2.25rem 0 5.5rem;
  }

  .pv2-hero-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .pv2-hero-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .pv2-hero-actions .pv2-btn {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }

  .pv2-circles-wrap {
    z-index: 3;
    margin-top: -2.5rem;
  }

  .pv2-circle {
    max-width: 100%;
  }

  .pv2-circle p {
    max-width: none;
  }

  .pv2-services-grid,
  .pv2-links-grid,
  .pv2-clients-grid,
  .pv2-contact-layout,
  .pv2-contact-cards,
  .pv2-footer-grid,
  .pv2-stats {
    grid-template-columns: 1fr;
  }

  .pv2-container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .pv2-why,
  .pv2-services,
  .pv2-links,
  .pv2-clients,
  .pv2-contact {
    padding-left: 0;
    padding-right: 0;
  }

  .pv2-booking-cta-inner {
    align-items: stretch;
  }

  .pv2-booking-cta .pv2-btn {
    width: 100%;
  }

  .pv2-go-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .pv2-go-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pv2-hero-media,
  .pv2-hero-content,
  .pv2-circle {
    animation: none;
  }
}
