:root {

  --clr-bg: #fff0ee;
  --clr-accent: #b36464;
  --clr-teal: #177669;
  --clr-text: #0b3d2c;
  --clr-white: #ffffff;
  --clr-overlay-bg-glass: rgba(255, 240, 238, 0.60);
  --clr-overlay-dark-soft: rgba(11, 61, 44, 0.08);

  --font-primary: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --ls-tight: -0.02em;
  --ls-wide: 0.12em;
  --ls-wider: 0.2em;
  --lh-tight: 1.1;
  --lh-relaxed: 1.7;

  --fs-h1: clamp(40px, 8vw, 80px);
  --fs-h2: clamp(28px, 4vw, 44px);
  --fs-h3: clamp(18px, 1.8vw, 20px);
  --fs-body: clamp(14px, 1.2vw, 16px);
  --fs-small: clamp(12px, 1vw, 13px);
  --fs-label: clamp(10px, 0.9vw, 12px);

  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;

  --section-padding-y: clamp(72px, 10vw, 96px);
  --container-padding-x: 24px;
  --container-max: 1280px;

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-pill: 999px;

  --border-thin: 1px;
  --border-thick: 2px;

  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.08);

  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 700ms;
  --ease-standard: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --header-height: 102px;
  --scroll-offset: 60px;
  --clr-footer-bg: #0c2e22;
  --clr-footer-text: rgba(245, 232, 228, 0.80);
  --clr-footer-muted: rgba(245, 232, 228, 0.45);
  --clr-footer-border: rgba(245, 232, 228, 0.10);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-light);
  line-height: var(--lh-relaxed);
  color: var(--clr-teal);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-primary);
  color: var(--clr-text);
  margin: 0;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

h4 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.label-caps {
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  background: var(--clr-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-thick) solid var(--clr-accent);
  transition: background var(--dur-base) var(--ease-standard);
}

.header-inner {
  display: flex;
  flex-direction: column;

  align-items: center;

  justify-content: center;

  height: 100%;

  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
  padding-top: 6px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.main-logo {
  height: 38px;

  width: auto !important;

  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-24);

  flex-wrap: wrap;

}

.nav-desktop a {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--clr-text);
  text-decoration: none;
  position: relative;
  transition: color var(--dur-base) var(--ease-standard);
  padding: 4px 8px;

}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -0.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clr-teal);
  transition: width var(--dur-base) var(--ease-standard);
}

.nav-desktop a:hover {
  color: var(--clr-teal);
}

.nav-desktop a:hover::after {
  width: 65%;
}

@media (max-width: 480px) {
  .nav-desktop {
    gap: var(--space-4);
    flex-wrap: nowrap;
  }

  .nav-desktop a {
    font-size: 11px;
    padding: 4px 5px;
    white-space: nowrap;
  }
}

main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--clr-bg);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--clr-bg), rgba(255, 240, 238, 0.6), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  padding: var(--space-24) var(--container-padding-x);
  margin-top: var(--header-height);
}

.badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: 6px var(--space-16);
  border: var(--border-thin) solid var(--clr-accent);
  border-radius: var(--radius-pill);
  background: var(--clr-overlay-bg-glass);
  margin-bottom: var(--space-24);
}

.badge-pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.badge-pulse-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse-ping 1.5s ease-in-out infinite;
}

.badge-pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--clr-accent);
}

.hero-logo-wrapper {
  margin: 0 auto var(--space-24);

  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-large-logo {
  width: 100%;

  max-width: 550px;

  height: auto;

  display: block;
}

.hero h1 {
  margin-bottom: var(--space-24);
  color: var(--clr-text);
  letter-spacing: -0.01em;
}

.hero h1 span.italic {
  font-style: italic;
  font-weight: var(--fw-regular);
}

.hero-lead {
  font-size: var(--fs-body);
  font-weight: var(--fw-light);
  max-width: 26rem;
  margin: 0 auto var(--space-40);
  line-height: var(--lh-relaxed);
  color: var(--clr-teal);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

@keyframes pulse-ping {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(2);
    opacity: 0;
  }
}

.no-break {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-32);
  font-family: var(--font-primary);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-standard),
    box-shadow var(--dur-base) var(--ease-standard),
    border-color var(--dur-base);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: var(--clr-overlay-bg-glass);
  color: var(--clr-text);
  border: var(--border-thin) solid var(--clr-accent);
}

.btn-secondary:hover {
  background: var(--clr-white);
}

.btn-whatsapp {
  background: #075E54;
  color: var(--clr-white);
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 20px;
}

.about {
  padding: var(--section-padding-y) 0;
  background: var(--clr-white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-64);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
  }
}

.about-label {
  color: var(--clr-accent);
  margin-bottom: var(--space-16);
}

.about h2 {
  color: var(--clr-text);
  margin-bottom: var(--space-24);
}

.about h2 span.italic {
  font-style: italic;
  font-weight: var(--fw-light);
  color: var(--clr-accent);
}

.about-body {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--clr-teal);
  line-height: 1.8;
  margin-bottom: var(--space-32);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(91, 155, 146, 0.18);
}

.about-feature {
  padding: var(--space-16) var(--space-20);
  background: rgba(255, 240, 238, 0.55);
  border: 1px solid rgba(234, 172, 172, 0.22);
  border-left: 3px solid var(--clr-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-feat-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  vertical-align: middle;
}

.about-feature p {
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  color: var(--clr-teal);
  line-height: 1.6;
  margin: 0;
}

.about-image {
  position: relative;
  height: 605px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(91, 155, 146, 0.2);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.marquee {
  overflow: hidden;
  padding: var(--space-16) 0;
  border-top: var(--border-thin) solid var(--clr-accent);
  border-bottom: var(--border-thin) solid var(--clr-accent);
  background: var(--clr-white);
}

.main-logo {
  margin: 6px;
  height: 50px;

  width: auto;

  display: block;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 160s linear infinite;
}

@media (min-width: 768px) {
  .marquee-track {
    animation-duration: 120s;
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-right: var(--space-48);
}

.marquee-item svg,
.marquee-item iconify-icon {
  color: var(--clr-accent);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

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

.gallery {
  position: relative;
  padding: var(--section-padding-y) 0;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/floral_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}

.gallery>.container {
  position: relative;
  z-index: 1;
}

.gallery-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-top: var(--space-40);
  margin-bottom: var(--space-48);
}

@media (min-width: 768px) {
  .gallery-intro {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.gallery-intro .about-label {
  margin-bottom: var(--space-8);
}

.gallery-intro h2 {
  margin-bottom: var(--space-8);
}

.gallery-subtitle {
  font-size: var(--fs-small);
  color: var(--clr-text);
  font-weight: var(--fw-regular);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-48) var(--space-24);
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-48);
}

.gallery-card-tag {
  display: block;
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-4);
}

.gallery-card-info {
  text-align: left;
  padding-top: var(--space-4);
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);

  width: 100%;

}

.gallery-card-media {
  position: relative;
  aspect-ratio: 4 / 5;

  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--clr-overlay-dark-soft);
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth);
}

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

.gallery-card-info h3 {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin: 0;
}

.portfolio-page {
  background: var(--clr-bg);
}

.portfolio-hero {
  position: relative;
  padding: calc(var(--section-padding-y) + var(--space-16)) 0 var(--section-padding-y);
  overflow: hidden;
}

.portfolio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/floral_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}

.portfolio-hero>.container {
  position: relative;
  z-index: 1;
}

.portfolio-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-64);
}

.portfolio-intro .about-label {
  margin-bottom: var(--space-8);
}

.portfolio-intro h1 {
  margin-bottom: var(--space-16);
  font-size: clamp(34px, 6vw, 64px);
}

.portfolio-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: var(--clr-text);
  font-weight: var(--fw-regular);
}

.portfolio-carousel-section {
  position: relative;
}

.portfolio-carousel-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  margin-bottom: var(--space-16);
}

.portfolio-carousel-controls {
  display: flex;
  gap: var(--space-12);
}

.portfolio-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: var(--border-thin) solid rgba(179, 100, 100, 0.35);
  background: rgba(255, 255, 255, 0.86);
  color: var(--clr-text);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-standard),
    background var(--dur-base) var(--ease-standard),
    border-color var(--dur-base) var(--ease-standard),
    opacity var(--dur-fast) var(--ease-standard);
}

.portfolio-arrow:hover {
  transform: translateY(-1px);
  background: var(--clr-white);
  border-color: var(--clr-accent);
}

.portfolio-arrow[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.portfolio-arrow iconify-icon {
  font-size: 24px;
}

.portfolio-carousel {
  position: relative;
}

.portfolio-carousel-viewport {
  overflow: hidden;
}

.portfolio-carousel-track {
  --portfolio-columns: 1;
  display: flex;
  gap: var(--space-24);
  transition: transform var(--dur-slow) var(--ease-smooth);
  will-change: transform;
}

.portfolio-card {
  flex: 0 0 calc((100% - (var(--space-24) * (var(--portfolio-columns) - 1))) / var(--portfolio-columns));
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.portfolio-card .gallery-card-media {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.portfolio-card .gallery-card-media img {
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .portfolio-carousel-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .portfolio-carousel-track {
    --portfolio-columns: 2;
  }
}

@media (min-width: 1024px) {
  .portfolio-carousel-track {
    --portfolio-columns: 3;
  }
}

@media (max-width: 767px) {
  .portfolio-hero {
    padding-top: calc(var(--section-padding-y) - var(--space-8));
  }

  .portfolio-carousel-controls {
    justify-content: flex-start;
  }
}

.testimoniale {
  padding: var(--section-padding-y) 0;
  background: var(--clr-white);
  overflow: hidden;
}

.testimoniale-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-64);
  align-items: center;
}

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

.testimoniale-phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-32);
}

.testimoniale-text-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.testimoniale-text-col .about-label {
  color: var(--clr-accent);
  margin-bottom: 0;
}

.testimoniale-text-col h2 {
  line-height: 1.15;
}

.testimoniale-text-col h2 .italic {
  font-style: italic;
  font-weight: var(--fw-light);
  color: var(--clr-accent);
}

.testi-paras {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(91, 155, 146, 0.25);
}

.testi-para {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
}

.testi-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.testi-para p {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--clr-teal);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: #141414;
  border-radius: 50px;
  padding: 10px;
  box-shadow:
    0 0 0 1px #3a3a3a,
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 50px 100px rgba(0, 0, 0, 0.28),
    0 20px 40px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.phone-frame::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 110px;
  width: 3px;
  height: 28px;
  background: #2c2c2c;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 42px 0 #2c2c2c;
}

.phone-frame::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 148px;
  width: 3px;
  height: 58px;
  background: #2c2c2c;
  border-radius: 0 2px 2px 0;
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 10;
  pointer-events: none;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.wa-shell {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #e5ddd5;
}

.wa-status-bar {
  height: 35px;
  background: #054c42;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 14px 5px;
  flex-shrink: 0;
}

.wa-header {
  background: #f5f1ed;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 50px;
}

.wa-back-icon {
  color: rgba(0, 0, 0, 0.9);
  font-size: 17px;
  flex-shrink: 0;
  line-height: 1;
}

.wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-primary);
}

.wa-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.wa-name {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-primary);
}

.wa-status-text {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.72);
  font-family: var(--font-primary);
}

.wa-header-actions {
  display: flex;
  gap: 14px;
  color: rgba(0, 0, 0, 0.9);
  font-size: 17px;
  flex-shrink: 0;
  align-items: center;
}

.wa-chat-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: #e5ddd5;
  padding: 10px 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  scrollbar-width: none;
}

.wa-chat-body::-webkit-scrollbar {
  display: none;
}

.wa-date-chip {
  align-self: center;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 7px;
  padding: 3px 9px;
  font-size: 10px;
  color: #54656f;
  margin-bottom: 6px;
  font-family: var(--font-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-bubble {
  max-width: 88%;
  min-width: 80px;
  background: #fff;
  border-radius: 0 7px 7px 7px;
  padding: 5px 9px 18px;
  position: relative;
  align-self: flex-start;
  word-break: break-word;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  margin-bottom: 2px;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 8px 0;
  border-color: transparent #fff transparent transparent;
}

.wa-bubble--sent {
  align-self: flex-end;
  background: #d9fdd3;
  border-radius: 7px 0 7px 7px;
}

.wa-bubble--sent::before {
  display: none;
}

.wa-bubble--sent::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 0 7px;
  border-color: transparent transparent transparent #d9fdd3;
}

.wa-bubble p {
  font-size: 12px;
  color: #111;
  line-height: 1.5;
  letter-spacing: -0.1px;
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 500;
}

.wa-time {
  position: absolute;
  bottom: 4px;
  right: 7px;
  font-size: 10px;
  color: #667781;
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-primary);
}

.wa-tick {
  font-size: 13px;
  color: #53bdeb;
  line-height: 1;
}

.wa-input-bar {
  background: #f0f0f0;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  min-height: 48px;
}

.phone-home-bar {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 4px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 2px;
  z-index: 10;
  pointer-events: none;
}

.phone-controls {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}

.phone-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border-thin) solid var(--clr-accent);
  background: var(--clr-overlay-bg-glass);
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background var(--dur-base), box-shadow var(--dur-base);
}

.phone-btn:hover {
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.phone-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-dot {

  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;

  padding: 14px;

  background-color: var(--clr-accent);
  opacity: 0.3;
  cursor: pointer;
  transition: opacity var(--dur-base), transform var(--dur-base);
}

.phone-dot.active {
  opacity: 1;
  transform: scale(1.35);
}

@media (max-width: 480px) {
  .phone-frame {
    transform: scale(0.78);
    transform-origin: top center;

    margin-bottom: calc(580px * (0.78 - 1));
  }

  .testi-icon {
    width: 26px;
    height: 26px;
  }
}

.contact {
  padding: var(--section-padding-y) 0;
  background: var(--clr-bg);
  border-bottom: var(--border-thin) solid var(--clr-accent);
}

.contact-inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-padding-x);
}

.contact-icon {
  margin: 0 auto var(--space-24);
  font-size: 2.5rem;
  color: var(--clr-accent);
}

.contact h3 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-12);
}

.contact-lead {
  font-size: var(--fw-semibold);
  font-weight: var(--fw-light);
  color: var(--clr-text);
  max-width: 28rem;
  margin: 0 auto var(--space-48);
  line-height: var(--lh-relaxed);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-40);
  text-align: left;
  padding: var(--space-40);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(234, 172, 172, 0.3);
  border-top: 3px solid var(--clr-accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-48);
}

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

.contact-panel h4 {
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-16);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.contact-panel h4 iconify-icon {
  font-size: 1.1rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.contact-panel p,
.contact-panel ul {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--clr-teal);
  margin: 0 0 var(--space-24);
}

.contact-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-panel li {
  display: flex;
  justify-content: space-between;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(234, 172, 172, 0.4);
}

.contact-panel li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-panel .strong {
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

.contact-panel .closed {
  color: var(--clr-accent);
}

.contact-panel a {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  text-decoration: none;
  border-bottom: 1px solid var(--clr-text);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  transition: color var(--dur-base), border-color var(--dur-base);
}

.contact-panel a:hover {
  color: var(--clr-teal);
  border-color: var(--clr-teal);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .contact-cta {
    flex-direction: row;
  }
}

.site-footer {
  background: var(--clr-footer-bg);
  padding-top: var(--space-64);
  padding-bottom: var(--space-32);
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-40);
  margin-bottom: var(--space-40);
  padding-top: var(--space-40);
  border-top: 1px solid var(--clr-footer-border);
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand-block {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-brand-block {
    grid-column: span 2;
  }
}

.footer-column h4 {
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-16);
  color: var(--clr-footer-muted);
}

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

.footer-column li {
  margin-bottom: var(--space-12);
}

.footer-column a,
.footer-column span {
  font-size: var(--fs-small);
  color: var(--clr-footer-text);
  text-decoration: none;
  transition: color var(--dur-base);
}

.footer-column a:hover {
  color: var(--clr-accent);
}

.footer-column a.underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(234, 172, 172, 0.4);
}

.footer-bottom {
  padding-top: var(--space-32);
  border-top: 1px solid var(--clr-footer-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: var(--fs-small);
  color: var(--clr-footer-muted);
  margin: 0;
}

.footer-bottom p a {
  color: var(--clr-footer-muted);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--space-16);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand-block>p {
  font-size: var(--fs-small);
  color: var(--clr-footer-text);
  max-width: 28rem;
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.footer-column a iconify-icon {
  vertical-align: -3px;
  font-size: 1rem;
  color: var(--clr-accent);
}

.footer-cookies-link {
  font-size: var(--fs-small);
  color: var(--clr-footer-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(234, 172, 172, 0.3);
  transition: color var(--dur-base);
}

.footer-cookies-link:hover {
  color: var(--clr-accent);
}

.powered-by {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  color: var(--clr-footer-muted);
  text-decoration: none;
  transition: opacity 0.2s;
}

.powered-by-text {
  font-family: inherit;
  font-size: inherit;
  color: var(--clr-footer-muted);
  transition: opacity 0.2s;
  font-size: var(--fs-small);
}

.powered-by-logo {
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.2s;
  height: 30px;
  width: auto;
  margin-left: 10px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

.powered-by:active .powered-by-text,
.powered-by:active .powered-by-logo {
  opacity: 0.4;
}

.powered-by:focus-visible {
  outline: 1.5px dashed var(--clr-accent);
  outline-offset: 2px;
}

.cookies-page {
  padding: var(--space-80) 0 var(--section-padding-y);
  background: var(--clr-bg);
  min-height: calc(100vh - var(--header-height));
}

.cookies-content {
  max-width: 760px;
  margin: 0 auto;
}

.cookies-label {
  color: var(--clr-accent);
  margin-bottom: var(--space-12);
}

.cookies-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin: 0 0 var(--space-8);
}

.cookies-updated {
  font-size: var(--fs-small);
  color: var(--clr-teal);
  font-style: italic;
  margin-bottom: var(--space-48);
}

.cookies-body h2 {
  font-size: var(--fs-h3);
  color: var(--clr-text);
  margin: var(--space-48) 0 var(--space-16);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(234, 172, 172, 0.4);
}

.cookies-body h3 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin: var(--space-24) 0 var(--space-12);
}

.cookies-body p {
  color: var(--clr-teal);
}

.cookies-body ul {
  padding-left: var(--space-20);
  margin: var(--space-16) 0 var(--space-24);
}

.cookies-body li {
  font-size: var(--fs-body);
  color: var(--clr-teal);
  margin-bottom: var(--space-8);
}

.cookies-body a {
  color: var(--clr-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--clr-accent);
  transition: color var(--dur-base);
}

.cookies-body a:hover {
  color: var(--clr-teal);
}

.cookies-body strong {
  color: var(--clr-text);
  font-weight: var(--fw-semibold);
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-16) 0 var(--space-24);
  font-size: var(--fs-small);
}

.cookies-table th {
  text-align: left;
  padding: var(--space-8) var(--space-12);
  background: rgba(234, 172, 172, 0.12);
  color: var(--clr-text);
  font-weight: var(--fw-semibold);
  border-bottom: 1px solid rgba(234, 172, 172, 0.4);
}

.cookies-table td {
  padding: var(--space-8) var(--space-12);
  color: var(--clr-teal);
  border-bottom: 1px solid rgba(234, 172, 172, 0.2);
}

.cookies-note {
  background: rgba(234, 172, 172, 0.12);
  border-left: 3px solid var(--clr-accent);
  padding: var(--space-16) var(--space-20);
  margin: var(--space-24) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.cookies-note p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--clr-text);
}

.cookies-back-btn {
  margin-top: var(--space-64);
}

.mobile-bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: var(--space-12);
  gap: var(--space-12);
  background: var(--clr-bg);
  border-top: var(--border-thin) solid var(--clr-accent);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-bar .btn {
  flex: 1;
  min-height: 44px;
}

@media (min-width: 768px) {
  body.has-mobile-bar {
    padding-bottom: 0 !important;
  }
}

::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.footer-legal-links {
  flex: 1;
  font-weight: var(--fw-medium);
}

.footer-legal-links:nth-of-type(2) {
  text-align: center;
}

.footer-legal-links:last-of-type {
  text-align: right;
}
