 /* ========================================================
   Canine Compassion GP — Home Page Styles
   Converted from Next.js/Tailwind to pure vanilla CSS
   ======================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,400;1,9..144,900&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Fredoka:wght@400;500;600;700&family=Inter:ital,wght@0,300;0,400;0,700;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,600;0,700;1,300;1,600;1,700&display=swap');

:root {
  color-scheme: light;
  /* warm cream paper */
  --background: oklch(0.955 0.018 85);
  --foreground: oklch(0.26 0.03 55);
  --card: oklch(0.985 0.012 90);
  --card-foreground: oklch(0.26 0.03 55);
  --primary: oklch(0.45 0.085 152);
  --primary-foreground: oklch(0.97 0.02 90);
  --secondary: oklch(0.9 0.035 78);
  --secondary-foreground: oklch(0.3 0.04 55);
  --muted: oklch(0.92 0.025 82);
  --muted-foreground: oklch(0.5 0.035 60);
  --accent: oklch(0.64 0.15 45);
  --accent-foreground: oklch(0.98 0.02 90);
  --border: oklch(0.86 0.03 78);
  --input: oklch(0.86 0.03 78);
  --ring: oklch(0.45 0.085 152);
  --forest: oklch(0.45 0.085 152);
  --terracotta: oklch(0.64 0.15 45);
  --mustard: oklch(0.78 0.13 80);
  --cream: oklch(0.955 0.018 85);
  --radius: 1rem;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: clip; */
}

body {
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: clip;
}

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

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Utility ---------- */
.bg-cream {
  background: var(--cream);
}

.font-heading {
  font-family: var(--font-heading);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: relative; /* keep navbar in normal flow but be a positioning context for the mobile menu */
  top: 0;
  z-index: 50;
  width: 100%;
  transition: all 0.3s ease;
  padding: 1rem 0.75rem;
  background: #FDFBF7;
}

#site-header.scrolled {
  background: #FDFBF7;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
  border-radius: 16px;
  background: #2B633D; /* updated per request */
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0.625rem 0.5rem 0.625rem 1rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex-shrink: 1;
}

.header-logo-icon {
  display: grid;
  place-items: center;
  height: 3.75rem;
  width: 3.75rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--primary-foreground);
}

.header-logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header-logo-img {
  width: 63px;
  height: 63px;
  object-fit: contain;
  border-radius: 50%;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1rem, 2.2vw, 1.7rem); /* responsive between mobile and desktop */
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff; /* ensure contrast on dark navbar */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* Slightly larger logo text on small screens (phone): +2–3px */
@media (max-width: 639px) {
  /* Larger logo/title on phones */
  .header-logo-text { font-size: 1.25rem; }
  .header-logo-img { width: 72px; height: 72px; }
  .header-logo-subtitle { font-size: 12px; }
}

.header-logo-text span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-logo-subtitle {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #DBC95C; /* Grande Prairie color */
  margin-top: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Desktop nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.header-nav a {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff; /* nav links on dark background */
  transition: color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: #F6682B;
}

/* CTA */
.header-cta-wrap {
  display: none;
  align-items: center;
  flex-shrink: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  background: #ffffff; /* white background per request */
  color: #111418; /* black text */
  border-radius: 9999px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  transition: background 0.2s;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05) inset;
}

.header-cta:hover {
  background: #f3f4f6; /* subtle off-white on hover */
}

.header-cta-text {
  position: relative;
  overflow: hidden;
  height: 1.5rem;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.header-cta-text span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform 0.3s;
}

.header-cta-text span:last-child {
  transform: translateY(100%);
  color: #F6682B;
}

.header-cta:hover .header-cta-text span:first-child {
  transform: translateY(-100%);
}

.header-cta:hover .header-cta-text span:last-child {
  transform: translateY(0);
}

.header-cta-icon {
  margin-left: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: #F6682B;
  color: #111418;
  transition: transform 0.3s;
}

.header-cta:hover .header-cta-icon {
  transform: rotate(45deg);
}

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #1f2937;
  border: none;
}

.mobile-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 100%;
  margin-top: 0.75rem;
  max-height: 75vh;
  overflow-y: auto;
  background: #2B633D; /* explicit green per request */
  border-radius: 1.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 50;
  padding: 1.25rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu nav a {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff; /* changed to white */
  transition: color 0.2s;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: rgba(255,255,255,0.9);
}

.mobile-menu nav a.mobile-menu-cta {
  color: #fff;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff; /* white background like desktop */
  color: #111418; /* black text like desktop */
  border-radius: 9999px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05) inset;
}

.mobile-menu-cta .cta-label {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  color: #111418;
}

.mobile-menu-cta .cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: #F6682B;
  color: #111418;
}

/* Desktop breakpoint */
@media (min-width: 640px) {
  #site-header {
    padding: 1rem;
  }

  .header-inner {
    padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  }

  .header-logo {
    gap: 0.75rem;
  }

  .header-logo-icon {
    height: 4.5rem;
    width: 4.5rem;
  }

  .header-logo-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header-logo-img {
    width: 72px;
    height: 72px;
  }

  .header-logo-text {
    font-size: 1.25rem;
  }

  .header-logo-subtitle {
    font-size: 10px;
  }

  .mobile-toggle {
    height: 3rem;
    width: 3rem;
  }

  .mobile-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .mobile-menu {
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
  }

  .mobile-menu nav {
    gap: 1.5rem;
  }

  .mobile-menu nav a {
    font-size: 18px;
  }

  .mobile-menu-cta {
    margin-top: 1rem;
  }

  .mobile-menu-cta .cta-label {
    font-size: 16px;
  }

  .mobile-menu-cta .cta-icon {
    height: 3rem;
    width: 3rem;
  }
}

@media (min-width: 768px) {
  #site-header {
    padding: 1.5rem;
  }

  #site-header.scrolled {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .header-inner {
    padding-left: 2rem;
  }

  .header-logo-text {
    font-size: 1.7rem; /* ensure requested size on desktop */
  }
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }

  .header-cta-wrap {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

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

@media (min-width: 1280px) {
  .header-nav {
    gap: 2.5rem;
  }

  .header-cta {
    padding-left: 2rem;
  }

  .header-cta-text {
    width: 120px;
    font-size: 15px;
  }

  .header-cta-icon {
    margin-left: 1rem;
    height: 3rem;
    width: 3rem;
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--primary);
  padding: 1.25rem 0;
  color: var(--primary-foreground);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: slideLeft 12s linear infinite;
  will-change: transform;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.marquee-item span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.05em;
}

.marquee-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--mustard);
}

@media (min-width: 640px) {
  .marquee-item span {
    font-size: 1rem;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }

  .about-text h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .about-image-wrap {
    height: auto;
    margin-top: 0;
    overflow: hidden;
  }

  .about-image-slider {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .about-image-slider img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
  }
}

@media (min-width: 768px) {
  .hide-on-desktop {
    display: none !important;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.about-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}

.about-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 900;
  color: #332421;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  margin-top: 0;
  padding-top: 0;
}

.about-text h2 .italic {
  font-style: italic;
  color: #2D6A4F;
}

.about-text p {
  font-size: 14px;
  color: #2c2c2c;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 780px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.comp-mqhqonuw a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 34px;
  box-sizing: border-box;
  background: #366b51;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 0;
  border-radius: 8px;
  border: 1.5px solid #111;
  box-shadow: 6px 6px 0px #000;
  text-decoration: none;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  font-family: 'DM Sans', sans-serif;
}

.comp-mqhqonuw a:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0px #000;
}

.comp-mqhqonuw a:active {
  transform: translateY(4px);
  box-shadow: 2px 2px 0px #000;
}

.comp-mqhqonuw .wixui-button__icon {
  display: none;
}

.about-image-wrap {
  width: 100%;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  overflow: visible;
}

.about-image-slider {
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 0;
  overflow: hidden;
  will-change: transform;
}

.about-image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 25%;
}

@media (min-width: 768px) {
  .about-section {
    flex-direction: row;
    align-items: stretch;
    min-height: 600px;
  }

  .about-image-slider {
    border-radius: 1.25rem;
  }

  .about-text {
    width: 50%;
    padding: 40px 2rem 40px 40px;
  }

  .about-text h2 {
    font-size: 42px;
    line-height: 1.05;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 16px;
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .comp-mqhqonuw a {
    width: 160px;
    height: 38px;
    font-size: 14px;
  }

  .about-image-wrap {
    width: 50%;
    height: auto;
  }

  .about-image-slider {
    height: 95%;
  }
}

@media (min-width: 1024px) {
  .about-text {
    padding: 50px 2rem 50px 50px;
  }

  .about-text h2 {
    font-size: 55px;
    line-height: 1.05;
  }

  .about-text p {
    font-size: 20px;
    margin-bottom: 2.5rem;
    line-height: 1.5;
  }

  .comp-mqhqonuw a {
    width: 180px;
    height: 42px;
    font-size: 16px;
  }

  .about-image-slider {
    height: 100%;
  }
}

@media (min-width: 1280px) {
  .about-text {
    padding: 60px 2rem 60px 60px;
  }

  .about-text h2 {
    font-size: 65px;
  }

  .about-text p {
    font-size: 24px;
    line-height: 1.5;
  }
  /* Lead paragraph size specifically for laptop widths (1280px — 1366px). Larger desktops keep 24px. */
  @media (min-width:1280px) and (max-width:1366px) {
    .about-text p.about-lead { font-size: 20px; line-height: 1.4; }
  }

  .comp-mqhqonuw a {
    width: 200px;
    height: 45px;
    font-size: 17px;
  }
}

@media (min-width: 1536px) {
  .about-text h2 {
    font-size: 75px;
  }

  .about-text p {
    font-size: 28px;
    line-height: 1.5;
  }

  .comp-mqhqonuw a {
    width: 217px;
    height: 47px;
    font-size: 18px;
  }
}

/* Testimonials source line (under quote) */
.ts-source {
  margin-top: 0.6rem;
  font-family: var(--font-sans);
  font-size: 16px;
  color: #ffffff;
  text-align: left;
}
.ts-source a {
  color: #ffffff;
  text-decoration: underline;
}

/* Testimonials arrow color: make both arrows white */
.ts-arrow {
  color: #ffffff;
}
.ts-arrow svg {
  stroke: #ffffff;
  color: #ffffff;
}
.ts-arrow:hover svg {
  stroke: #ffffff;
}

@media (min-width: 1900px) {
  .about-text h2 {
    font-size: 81px;
    line-height: 1.02;
    margin-bottom: 1.5rem;
  }

  .about-text p {
    font-size: 30px;
    margin-bottom: 3rem;
    line-height: 1.5;
  }
}

/* ============================================================
   ENQUIRE
   ============================================================ */
.enquire-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url('../GRAPHICS BG.avif') no-repeat center center / cover;
  padding: 4rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enquire-deco {
  position: absolute;
  pointer-events: none;
}

.enquire-circle-1 {
  bottom: -12rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  border: 1px solid #EBE4D8;
  opacity: 0.5;
}

.enquire-circle-2 {
  bottom: -6rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  background: #EDE6DA;
  opacity: 0.5;
}

.enquire-circle-3 {
  bottom: -8rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: #EDE6DA;
  opacity: 0.5;
}

.enquire-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
  text-align: center;
}

.enquire-content h2 {
  max-width: 48rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #3B2C24;
}

.enquire-btn {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #873A17;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  border: none;
  transition: background 0.2s;
}

.enquire-btn:hover {
  background: #682c11;
}

@media (min-width: 640px) {
  .enquire-section {
    height: 580px;
    padding: 0;
  }

  .enquire-content h2 {
    font-size: 3rem;
  }
}

/* ============================================================
   SERVICES (Sticky Cards)
   ============================================================ */
.services-section {
  position: relative;
  background: #F5F1EE;
  padding: 0 0 2.5rem;
}

.services-inner {
  position: relative;
  padding: 0 1rem;
}

.service-card-wrap {
  position: sticky;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .service-card-wrap {
    top: 5rem !important;
  }
}

.service-card {
  overflow: hidden;
  background: #fff;
  border-left: 1px solid #d9d9d9;
  min-height: calc(100vh - 9rem);
}

.service-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.service-card-image {
  position: relative;
  height: 100%;
  min-height: 320px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .service-card-grid {
    grid-template-rows: auto 1fr;
    min-height: 100%;
  }

  .service-card-image {
    height: 100%;
    min-height: 250px;
  }

  .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.service-card-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  padding: 40px 20px 30px 20px;
}

.service-card-text h3 {
  font-size: 24px;
  font-weight: 900;
  color: #332421;
  line-height: 1.15;
  font-family: 'Fraunces', serif;
}

.service-card-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #1a1a1a;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  transition: all 0.2s;
  margin-top: 1rem;
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
}

.service-card-link:hover {
  background: #1a1a1a;
  color: #fff;
}

.service-card-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

.services-spacer {
  height: 4rem;
}

@media (min-width: 640px) {
  .services-section {
    padding: 0 0 4rem;
  }

  .services-inner {
    padding: 0 2rem;
    margin: 0 auto;
  }

  .service-card-image {
    height: 400px;
  }

  .service-card-text {
    padding: 70px 30px 40px 30px;
  }

  .service-card-text h3 {
    font-size: 28px;
  }

  .service-card-text p {
    font-size: 18px;
  }

  .services-spacer {
    height: 6rem;
  }
}

@media (min-width: 768px) {
  .service-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-image {
    height: 400px;
  }

  .service-card-text {
    padding: 95px 35px 40px 35px;
  }

  .service-card-text h3 {
    font-size: 32px;
  }

  .service-card-text p {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .services-inner {
    padding: 0 2.5rem;
    margin: 0 auto;
  }

  .service-card-image {
    height: 480px;
  }

  .service-card-text {
    padding: 114px 40px 50px 50px;
  }

  .service-card-text h3 {
    font-size: 38px;
  }

  .service-card-text p {
    font-size: 22px;
  }
}

@media (min-width: 1280px) {
  .services-inner {
    padding: 0 3rem;
  }

  .service-card-image {
    height: 550px;
  }

  .service-card-text {
    padding: 130px 50px 50px 55px;
  }

  .service-card-text h3 {
    font-size: 45px;
  }

  .service-card-text p {
    font-size: 25px;
  }

  .service-card-link {
    font-size: 13px;
    padding: 10px 24px;
  }
}

@media (min-width: 1536px) {
  .services-inner {
    padding: 0 3rem;
    max-width: 1905px;
    margin: 0 auto;
  }

  .service-card-image {
    height: 750px;
  }

  .service-card-text {
    padding: 178px 60px 60px 60px;
  }

  .service-card-text h3 {
    font-size: 55px;
  }

  .service-card-text p {
    font-size: 28px;
  }
}

@media (min-width: 1900px) {
  .service-card-image {
    height: 887px;
  }

  .service-card-text {
    padding-top: 210px;
  }

  .service-card-text h3 {
    font-size: 65px;
  }

  .service-card-text p {
    font-size: 30px;
  }
}

/* ============================================================
   WHY US
   ============================================================ */
.why-section {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding: 5rem 0;
}

.why-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3.5rem;
  padding: 0 1rem;
}

/* Left column */
.why-left {
  display: flex;
  flex-direction: column;
}

.why-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.why-heading {
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.why-heading .italic {
  display: block;
  font-style: italic;
  color: var(--primary);
  margin-top: 0.25rem;
}

.why-mobile-br {
  display: none;
}

.why-heading-space {
  display: inline;
}

.why-desc {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.why-image {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--border);
}

.why-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.why-stats {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.why-stat-number {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--primary);
}

.why-stat-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Right column — reasons list */
.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.why-item:first-child {
  border-top: none;
  padding-top: 0;
}

.why-item-icon {
  position: relative;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.why-item-icon .hover-bg {
  position: absolute;
  inset: -0.5rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.04);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-item:hover .hover-bg {
  opacity: 1;
}

.why-item-icon img {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  transition: transform 0.3s;
}

.why-item:hover .why-item-icon img {
  transform: rotate(-6deg) scale(1.1);
}

.why-item-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
  font-variant-numeric: tabular-nums;
}

.why-item-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-left: 0.75rem;
}

.why-item-desc {
  margin-top: 0.5rem;
  max-width: 36rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .why-item-icon img {
    width: 4rem;
    height: 4rem;
  }

  .why-item {
    gap: 1.75rem;
  }

  .why-item-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .why-section {
    padding: 7rem 0;
  }

  .why-grid {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
  }

  .why-left {
    position: sticky;
    top: 6rem;
    align-self: start;
  }

  .why-heading {
    font-size: 2.25rem;
  }
}

@media (min-width: 640px) {
  .why-heading {
    font-size: 3rem;
  }
}

@media (max-width: 639px) {
  .why-section {
    padding-top: 30px;
    padding-bottom: 3.5rem;
  }

  .why-grid {
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  .why-mobile-br {
    display: block;
  }

  .why-heading-space {
    display: none;
  }

  .why-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.4;
    color: #3c6e57;
  }

  .why-heading {
    margin-top: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #3b2a24;
  }

  .why-heading .italic {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.05;
    color: #3c6e57;
  }

  .why-desc {
    margin-top: 1.5rem;
    max-width: none;
    font-size: 1rem;
    line-height: 1.45;
    color: #333333;
  }

  .why-stats {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .why-stat.reveal {
    transform: translateY(1.25rem);
  }

  .why-stat.reveal.revealed {
    transform: translateX(0) translateY(0);
  }

  .why-stat-number {
    font-size: 1.5rem;
  }

  .why-stat-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .why-item {
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .why-item-icon {
    margin-top: 0.125rem;
  }

  .why-item-icon img {
    width: 3rem;
    height: 3rem;
  }

  .why-item > div > div:first-child {
    gap: 0.5rem !important;
  }

  .why-item-number {
    font-size: 12px;
    font-weight: 600;
    color: #477C64;
  }

  .why-item-title {
    font-size: 20px;
    font-weight: 900;
    margin-left: 0.5rem;
    line-height: 1.2;
    color: #3b2a24;
  }

  .why-item-desc {
    margin-top: 0.375rem;
    max-width: none;
    font-size: 14px;
    line-height: 1.3;
    color: #666666;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ts-section {
  --bg-cream: #2B633D;
  --text-dark: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  padding: 100px 24px;
  background: #2B633D;
  font-family: 'Fredoka', sans-serif;
}

.ts-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ts-heading-block {
  margin-bottom: 64px;
}

.ts-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ts-section h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.15;
  font-family: 'Fraunces', serif;
}

.ts-section h2 .italic {
  font-style: italic;
  color: #E3AD4B;
}

.ts-slider {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.ts-visual {
  flex-shrink: 0;
  width: 340px;
}

.ts-image {
  width: 100%;
  height: 440px;
  border-radius: 220px 220px 20px 20px;
  overflow: hidden;
  background: #e5d9b8;
}

.ts-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.ts-nav {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.ts-arrow {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.ts-arrow:active {
  opacity: 0.8;
}

@media (hover: hover) {
  .ts-arrow:hover {
    opacity: 0.55;
  }
}

.ts-arrow svg {
  width: 28px;
  height: 20px;
}

.ts-content {
  flex: 1;
  max-width: 640px;
  padding-top: 6px;
}

.ts-quote {
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0 0 32px 0;
  transition: opacity 0.25s ease;
}

.ts-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: opacity 0.25s ease;
}

.ts-author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.ts-author-role {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.fade-out {
  opacity: 0 !important;
}

@media (max-width: 767px) {
  .ts-section {
    padding: 60px 20px;
  }

  .ts-section h2 {
    font-size: 32px;
  }

  .ts-slider {
    flex-direction: column;
    gap: 32px;
  }

  .ts-visual {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .ts-image {
    height: 380px;
  }

  .ts-quote {
    font-size: 20px;
  }

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

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: #F0EAE0;
  padding: 4rem 0;
}

.cta-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  display: grid;
  align-items: center;
}

.cta-text {
  position: relative;
  z-index: 10;
  padding: 2rem;
}

.cta-text .paw-icon {
  width: 2.5rem;
  height: 2.5rem;
  opacity: 0.7;
  color: currentColor;
}

.cta-text h2 {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-text p {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--card);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  border: none;
  transition: transform 0.2s;
}

.cta-primary:hover {
  transform: translateY(-2px);
}

.cta-primary svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.cta-primary:hover svg {
  transform: translateX(4px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-foreground);
  transition: background 0.2s;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-image {
  position: relative;
  height: 16rem;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .cta-container {
    padding: 0 1.5rem;
  }

  .cta-text {
    padding: 3rem;
  }

  .cta-text h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .cta-section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .cta-card {
    grid-template-columns: 1fr 1fr;
  }

  .cta-text {
    padding: 4rem;
  }

  .cta-text h2 {
    font-size: 3rem;
  }

  .cta-image {
    height: 100%;
    min-height: 26rem;
  }
}

/* ============================================================
   SOCIAL
   ============================================================ */
.social-section {
  background: var(--cream);
  padding: 5rem 0;
}

.social-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 3rem;
}

.social-text .eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.social-text h2 {
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 768px) {
  .social-text h2 {
    font-size: 2.25rem;
  }
}

.social-text h2 .italic {
  font-style: italic;
  color: var(--primary);
}

.social-text p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 768px) {
  .social-text p {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

.social-text p .bold {
  font-weight: 600;
  color: var(--foreground);
}

.social-btns {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--accent);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-foreground);
  border: none;
  transition: transform 0.2s;
}

.social-btn-ig:hover {
  transform: translateY(-2px);
}

.social-btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: background 0.2s;
}

.social-btn-fb:hover {
  background: var(--secondary);
}

.social-btn-ig svg,
.social-btn-fb svg {
  width: 1rem;
  height: 1rem;
}

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 140px;
  gap: 0.75rem;
}

.social-grid .row-span-2 {
  grid-row: span 2;
}

.social-post {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.social-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.social-post:hover img {
  transform: scale(1.1);
}

.social-post-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}

.social-post:hover .social-post-overlay {
  opacity: 1;
}

.social-post-overlay span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: var(--card);
}

.social-post-overlay svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

@media (min-width: 640px) {
  .social-grid {
    grid-auto-rows: 180px;
  }

  .social-text h2 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .social-section {
    padding: 7rem 0;
  }

  .social-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .social-container {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }
}

/* ============================================================
   FAQs
   ============================================================ */
.faq-section {
  background: rgba(0, 0, 0, 0.03);
  padding: 5rem 0;
}

.faq-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  padding: 0 1rem;
}

.faq-intro .eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.faq-intro h2 {
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.faq-intro h2 .italic {
  font-style: italic;
  color: var(--primary);
}

.faq-intro p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.faq-list {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-toggle {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--foreground);
  transition: background 0.2s, color 0.2s;
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  color: var(--accent-foreground);
}

.faq-toggle svg {
  width: 1rem;
  height: 1rem;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 1.25rem 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .faq-intro h2 {
    font-size: 3rem;
  }

  .faq-list {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .faq-section {
    padding: 7rem 0;
  }

  .faq-grid {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--cream);
  padding: 5rem 0;
}

.contact-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-card {
  overflow: hidden;
  border-radius: 2.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: grid;
}

.contact-info {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 2rem;
}

.contact-info .eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mustard);
}

.contact-info h2 {
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-info>p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.85;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
}

.contact-detail-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-detail-label {
  font-size: 0.875rem;
  opacity: 0.7;
}

.contact-detail-value {
  font-weight: 500;
}

.contact-detail-value a {
  text-decoration-thickness: from-font;
  text-underline-offset: 4px;
}

.contact-detail-value a:hover {
  text-decoration: underline;
}

/* Form */
.contact-form-wrap {
  padding: 2rem;
}

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

.contact-row {
  display: grid;
  gap: 1.25rem;
}

.contact-field label {
  display: block;
}

.contact-field .field-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact-input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.contact-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

textarea.contact-input {
  resize: none;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border-radius: 9999px;
  background: var(--accent);
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--accent-foreground);
  border: none;
  transition: transform 0.2s;
  cursor: pointer;
}

.contact-submit:hover {
  transform: translateY(-2px);
}

.contact-submit svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.contact-submit:hover svg {
  transform: translateX(4px);
}

/* Success state */
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 4rem 2rem;
}

.contact-success.show {
  display: flex;
}

.contact-success svg {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
}

.contact-success h3 {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.contact-success p {
  margin-top: 0.5rem;
  max-width: 24rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .contact-info {
    padding: 3rem;
  }

  .contact-form-wrap {
    padding: 3rem;
  }

  .contact-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info h2 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .contact-section {
    padding: 7rem 0;
  }

  .contact-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-card {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* ===== Contact Cards ===== */
.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.card {
  flex: 1 1 300px;
  max-width: 360px;
  min-height: 320px;
  padding: 40px 30px;
  background: #fff;
  border: 8px solid #2B633D;
  box-shadow: 12px 12px 0 #2B633D;
  transform: rotate(-1.5deg);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  font-family: 'Fraunces', serif;
}
.card:nth-child(2) { transform: rotate(1.5deg); }
.card:nth-child(3) { transform: rotate(-1deg); }
.card:active { animation: shake 0.5s ease-in-out; }
.card:hover { transform: translateY(-8px) rotate(0deg); box-shadow: 20px 20px 0 #2B633D; }

.card__icon { 
  margin-bottom: 24px;
}

.card__icon svg {
  transition: transform 0.3s ease;
}

.card:hover .card__icon svg {
  transform: scale(1.1) rotate(-5deg);
}

.card__title {
  font-size: 26px;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  border-bottom: 3px solid #2B633D;
  width: fit-content;
  padding-bottom: 6px;
  letter-spacing: 0.05em;
}

.card__contact {
  font-size: 19px;
  font-weight: 700;
  color: #2B633D;
  display: block;
  margin-bottom: 12px;
  word-break: break-word;
}

.card__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
  margin-top: auto;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px) rotate(-1deg); }
  50% { transform: translateX(5px) rotate(1deg); }
  75% { transform: translateX(-5px) rotate(-1deg); }
  100% { transform: translateX(0); }
}

/* ============================================================
   CERTIFICATES STRIP
   ============================================================ */
.cert-strip-section {
  padding: 40px 0;
  background: var(--background);
  width: 100%;
}

.cert-strip-container {
  width: 80%;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 32px 0;
}

.cert-strip-text {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--foreground);
  margin: 0 0 24px 0;
  font-weight: 500;
}

.cert-strip-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  align-items: center;
}

.cert-strip-track::-webkit-scrollbar {
  display: none;
}

.cert-strip-track:active {
  cursor: grabbing;
}

.cert-strip-slide {
  flex: 0 0 auto;
  width: calc(20% - 26px);
  min-width: 140px;
  scroll-snap-align: center;
  transition: transform 0.2s ease;
}

.cert-strip-slide img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.cert-strip-slide:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .cert-strip-container {
    width: 90%;
  }
  .cert-strip-slide {
    width: calc(33.333% - 22px);
  }
}

@media (max-width: 768px) {
  .cert-strip-container {
    width: 95%;
    padding: 24px 0;
  }
  .cert-strip-slide {
    width: calc(50% - 16px);
    min-width: 120px;
  }
  .cert-strip-slide img {
    height: 100px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.groom-footer-wrapper {
  width: 100%;
  background: #F6F0E3; /* updated per request */
  overflow: hidden;
}

.groom-footer {
  position: relative;
  background: #2F2016;
  color: #fff;
  overflow: hidden;
  width: 100%;
  border-radius: 48px 48px 0 0;
  font-family: 'Inter', -apple-system, Arial, sans-serif;
}

.groom-footer a {
  text-decoration: none;
  color: inherit;
}

.groom-footer * {
  box-sizing: border-box;
}

.gf-bg-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, #2F2016 0%, #2F2016 70%, #f5f5f5 100%);
  z-index: 0;
  pointer-events: none;
}

.gf-content {
  position: relative;
  z-index: 2;
}

.gf-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 64px;
  width: 100%;
}

.gf-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  margin-bottom: 80px;
  align-items: start;
}

.gf-logo-col {
  display: flex;
  align-items: flex-start;
}

.gf-brand-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11.5rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 0;
  color: #fff;
}

.gf-nav-col {
  display: flex;
  justify-content: flex-end;
}

.gf-nav-inner {
  max-width: 360px;
  width: 100%;
}

.gf-nav-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gf-nav-heading {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

.gf-nav-heading .gf-way {
  color: #F3E6BC;
  font-weight: 700;
}

.gf-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gf-nav-links a {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.5;
  transition: color 0.3s;
  display: inline-block;
}

.gf-nav-links a:hover {
  color: #fff;
}

.gf-social-wrap {
  margin-top: 40px;
}

.gf-social-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gf-social-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F3E6BC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}

.gf-social-btn:hover {
  background: #e8dab0;
}

.gf-social-btn svg {
  color: #2E2F33;
  display: block;
  width: 24px;
  height: 24px;
}

/* Newsletter */
.gf-nl-wrap {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin-bottom: 100px;
}

.gf-nl-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gf-nl-heading {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}

.gf-nl-heading .gf-accent {
  color: #F3E6BC;
  font-weight: 700;
  font-style: italic;
}

.gf-input-row {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.18), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 480px;
  height: 56px;
}

.gf-email-input {
  flex: 1;
  min-width: 0;
  padding: 16px 24px;
  color: #111827;
  font-size: 1rem;
  font-weight: 300;
  font-family: inherit;
  outline: none;
  border: none;
  background: transparent;
  height: 100%;
}

.gf-email-input::placeholder {
  color: #9ca3af;
}

.gf-submit-btn {
  flex-shrink: 0;
  background: #2F2016;
  padding: 12px 16px;
  margin: 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  height: 100%;
}

.gf-submit-btn:hover {
  background: #3E3F43;
}

.gf-submit-btn svg {
  width: 24px;
  height: 24px;
  color: #F3E6BC;
  transition: transform 0.3s;
}

.gf-submit-btn:hover svg {
  transform: translateX(4px);
}

.gf-form-msg {
  display: none;
  font-size: 0.875rem;
  padding: 6px 0;
}

.gf-form-msg.show {
  display: block;
}

.gf-form-msg.success {
  color: #10b981;
}

.gf-form-msg.error {
  color: #fca5a5;
}

/* Illustration */
.gf-illo-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 380px;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.gf-illo-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: 50%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

/* Footer responsive */
@media (max-width: 1280px) {
  .gf-container {
    padding: 80px 48px;
  }

  .gf-top-grid {
    gap: 60px;
  }

  .gf-brand-text {
    font-size: 10rem;
  }

  .gf-nav-heading {
    font-size: 3.5rem;
  }

  .gf-illo-wrap {
    height: 360px;
  }

  .gf-illo-img {
    max-width: 52%;
  }
}

@media (max-width: 1024px) {
  .gf-container {
    padding: 64px 40px;
  }

  .gf-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .gf-nav-col {
    justify-content: flex-start;
  }

  .gf-brand-text {
    font-size: 8.5rem;
  }

  .gf-nav-heading {
    font-size: 3rem;
  }

  .gf-nl-heading {
    font-size: 2.5rem;
  }

  .gf-nl-wrap {
    margin-bottom: 80px;
  }

  .gf-illo-wrap {
    height: 340px;
  }

  .gf-illo-img {
    max-width: 55%;
  }
}

@media (max-width: 768px) {
  .gf-container {
    padding: 48px 28px;
  }

  .gf-top-grid {
    gap: 40px;
    margin-bottom: 50px;
  }

  .gf-brand-text {
    font-size: 7rem;
  }

  .gf-nav-heading {
    font-size: 2.5rem;
  }

  .gf-nl-heading {
    font-size: 2rem;
  }

  .gf-nl-wrap {
    max-width: 100%;
    margin-bottom: 70px;
  }

  .gf-input-row {
    max-width: 100%;
  }

  .gf-illo-wrap {
    height: 300px;
  }

  .gf-illo-img {
    max-width: 60%;
  }
}

@media (max-width: 640px) {
  .gf-container {
    padding: 40px 20px 0;
  }

  .groom-footer {
    display: flex;
    flex-direction: column;
  }

  .gf-bg-shape {
    display: none;
  }

  .gf-content {
    order: 1;
  }

  .gf-top-grid {
    margin-bottom: 40px;
  }

  .gf-brand-text {
    font-size: 11vw;
  }

  .gf-nav-heading {
    font-size: 2.25rem;
  }

  .gf-nl-heading {
    font-size: 1.75rem;
  }

  .gf-nav-links a {
    font-size: 1rem;
  }

  .gf-nl-wrap {
    margin-bottom: 0;
  }

  .gf-input-row {
    height: 50px;
  }

  .gf-submit-btn {
    padding: 10px 12px;
  }

  .gf-illo-wrap {
    position: static;
    order: 2;
    width: calc(100% + 40px);
    height: auto;
    margin: 32px -20px 0 -20px;
    text-align: center;
    z-index: 1;
  }

  .gf-illo-img {
    position: static;
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .gf-container {
    padding: 32px 16px 0;
  }

  .gf-brand-text {
    font-size: 11vw;
  }

  .gf-nav-stack {
    gap: 32px;
  }

  .gf-nav-heading {
    font-size: 2rem;
  }

  .gf-nl-heading {
    font-size: 1.5rem;
  }

  .gf-nav-links {
    gap: 12px;
  }

  .gf-nav-links a {
    font-size: 0.95rem;
  }

  .gf-social-btn {
    width: 48px;
    height: 48px;
  }

  .gf-input-row {
    height: 48px;
    border-radius: 16px;
  }

  .gf-email-input {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .gf-submit-btn {
    padding: 8px 10px;
    border-radius: 12px;
    margin: 6px;
  }

  .gf-submit-btn svg {
    width: 20px;
    height: 20px;
  }

  .gf-illo-wrap {
    width: calc(100% + 32px);
    margin: 28px -16px 0 -16px;
  }
}

@media (max-width: 380px) {
  .gf-container {
    padding: 28px 14px 0;
  }

  .gf-brand-text {
    font-size: 11vw;
  }

  .gf-nav-heading {
    font-size: 1.75rem;
  }

  .gf-nl-heading {
    font-size: 1.35rem;
  }

  .gf-social-btn {
    width: 44px;
    height: 44px;
  }

  .gf-illo-wrap {
    width: calc(100% + 28px);
    margin: 24px -14px 0 -14px;
  }
}

@media (max-width: 320px) {
  .gf-container {
    padding: 24px 12px 0;
  }

  .gf-brand-text {
    font-size: 11vw;
  }

  .gf-nav-heading {
    font-size: 1.5rem;
  }

  .gf-nl-heading {
    font-size: 1.25rem;
  }

  .gf-illo-wrap {
    width: calc(100% + 24px);
    margin: 20px -12px 0 -12px;
  }
}

/* ============================================================
   REVEAL ANIMATION (IntersectionObserver based)
   ============================================================ */
.reveal {
  opacity: 0;
  transition: all 0.7s ease-out;
  will-change: transform, opacity;
}

.reveal.reveal-up {
  transform: translateY(2rem);
}

.reveal.reveal-down {
  transform: translateY(-2rem);
}

.reveal.reveal-left {
  transform: translateX(2rem);
}

.reveal.reveal-right {
  transform: translateX(-2rem);
}

.reveal.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 767px) {

  .reveal.reveal-left,
  .reveal.reveal-right {
    transform: translateY(1.5rem);
  }
}
/* --- why-heading desktop break tweaks --- */
.why-desktop-br { display: none; }
.why-mobile-br { display: inline; }

@media (min-width: 1024px) {
  .why-mobile-br { display: none; }
  .why-desktop-br { display: block; }
  /* ensure the italic line stands alone */
  .why-heading .italic { display: block; margin-top: 0.25rem; }
}


/* --- why-heading forced two-line spans --- */
.why-line1, .why-line2 { display: inline; }

@media (min-width: 1024px) {
  .why-line1, .why-line2 { display: block; }
  /* keep existing sizing but ensure the heading fits; reduce if needed */
}


/* --- enforce two-line why-heading on desktop: larger font but keep 2 lines --- */
@media (min-width: 1024px) {
  .why-heading {
    font-size: 40px !important;
    max-width: 720px; /* keep width limited so text wraps to two lines */
    line-height: 1.05;
  }
  .why-line1, .why-line2 { display: block; }
}
@media (min-width: 1536px) {
  .why-heading { font-size: 46px !important; max-width: 820px; }
}


/* --- why-desc desktop typography override as requested --- */
@media (min-width: 1024px) {
  .why-desc {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 19px !important;
    font-weight: 400 !important;
    color: #000 !important;
    line-height: 1.5 !important;
    max-width: 520px; /* keep paragraph readable */
  }
}


/* --- why-item-number styling (01,02...) --- */
.why-item-number {
  font-family: var(--font-heading); /* Fraunces */
  font-size: 15px;
  color: var(--forest);
  font-weight: 700;
  display: inline-block;
  min-width: 2rem;
}
@media (min-width: 1024px) {
  .why-item-number { font-size: 15px; }
}


/* --- why-item-desc desktop tweak: black 13px, tighter line-height --- */
@media (min-width: 1024px) {
  .why-item-desc {
    color: #000 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400 !important;
    max-width: 520px;
  }
}


/* --- mobile: make why-item-desc text black --- */
@media (max-width: 1023px) {
  .why-item-desc {
    color: #000 !important;
  }
}




/* --- social heading: force two lines and keep handle on single second line --- */
@media (min-width: 1024px) {
  .social-text h2 {
    /* limit width so heading occupies two lines: title + handle */
    max-width: 760px;
    line-height: 1.05;
  }
  .social-text h2 .italic {
    display: block;         /* place handle on its own line */
    white-space: nowrap;    /* prevent handle from breaking onto multiple lines */
    overflow: visible;
  }
}


/* ══════════════════════════════════════════════════════
   NAVBAR DROPDOWN
   ══════════════════════════════════════════════════════ */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.nav-dropdown-toggle:hover {
  color: #F6682B;
}

.nav-dropdown-toggle svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Invisible bridge so hover doesn't break between button and menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 8px 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ffffff;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  color: #1e1b1a !important;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background-color: #f5f0e6;
  color: #F6682B !important;
}

/* ── Mobile Dropdown ─────────────────────────────────── */
.mobile-nav-dropdown {
  display: block;
}

.mobile-nav-dropdown summary {
  list-style: none;
  outline: none;
  cursor: pointer;
}

.mobile-nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-dropdown-toggle:hover {
  color: rgba(255, 255, 255, 0.9);
}

.mobile-dropdown-toggle svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.mobile-nav-dropdown[open] .mobile-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-left: 1.25rem;
  margin-top: 1.25rem;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-dropdown-menu a {
  font-size: 15px !important;
  font-weight: 500 !important;
}
