:root {
  --bg: #f7f0e8;
  --bg-soft: #fffaf5;
  --surface: rgba(255, 252, 247, 0.86);
  --surface-strong: #fffdf9;
  --text: #171311;
  --muted: #6f6257;
  --line: rgba(42, 32, 25, 0.12);
  --gold: #b99252;
  --gold-deep: #8d6933;
  --black: #111111;
  --shadow: 0 24px 80px rgba(37, 25, 15, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --ease-smooth: 0.28s ease;
}

* {
  box-sizing: border-box;
}

*:focus-visible {
  outline: 2px solid rgba(185, 146, 82, 0.9);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185, 146, 82, 0.15), transparent 32%),
    linear-gradient(180deg, #fbf6ef 0%, #f5ede4 100%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-smooth), opacity var(--ease-smooth), transform var(--ease-smooth);
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 239, 0.72);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  transition: background var(--ease-smooth), box-shadow var(--ease-smooth);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ecd3a7);
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  align-items: center;
}

.nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0.35);
  transform-origin: center;
  opacity: 0;
  transition: transform var(--ease-smooth), opacity var(--ease-smooth);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  background: rgba(251, 246, 239, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0.5rem 1rem 1rem;
  flex-direction: column;
  z-index: 19;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 8px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.hero,
.section {
  padding: 5rem 0;
}

.hero-grid,
.booking-grid,
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.3rem;
}

.hero-text,
.section-heading p,
.booking-copy p,
.offer-card p,
.testimonial-card p,
.why-card p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.trust-strip span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.instant-note {
  margin: 1rem 0 0.85rem;
  color: var(--gold-deep);
  font-weight: 800;
}

.urgency-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.4rem;
}

.urgency-strip span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions,
.hero-proof,
.booking-points,
.services-grid,
.gallery-grid,
.offers-grid,
.testimonial-grid,
.why-list {
  display: grid;
  gap: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), background var(--ease-smooth), border-color var(--ease-smooth);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e7c994);
  color: var(--black);
  box-shadow: 0 14px 32px rgba(185, 146, 82, 0.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.btn-secondary:hover {
  border-color: rgba(185, 146, 82, 0.35);
  background: rgba(255, 255, 255, 0.78);
}

.btn-block {
  width: 100%;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof div,
.point-card,
.service-card,
.gallery-card,
.offer-card,
.testimonial-card,
.why-card,
.booking-form,
.hero-card,
.final-cta-box {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), border-color var(--ease-smooth);
}

.hero-proof div {
  padding: 1.1rem;
  border-radius: var(--radius-md);
}

.hero-proof div:hover,
.point-card:hover,
.service-card:hover,
.gallery-card:hover,
.offer-card:hover,
.testimonial-card:hover,
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 146, 82, 0.22);
  box-shadow: 0 28px 80px rgba(37, 25, 15, 0.16);
}

.hero-proof strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

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

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 480px;
  background-color: #f5f0eb;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(4px);
  z-index: 1;
}

.hero-visual::before {
  width: 72%;
  height: 72%;
  right: -12%;
  top: -10%;
  background: radial-gradient(circle, rgba(238, 214, 171, 0.16), transparent 60%);
}

.hero-visual::after {
  width: 90%;
  height: 50%;
  left: -10%;
  bottom: -14%;
  background: radial-gradient(circle, rgba(255, 247, 235, 0.14), transparent 60%);
}

.hero-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  z-index: 0;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(185, 146, 82, 0.4) 0%, rgba(17, 17, 17, 0.5) 100%);
  border-radius: var(--radius-xl);
  z-index: 1;
}

.hero-card {
  position: relative;
  z-index: 2;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
}

.hero-card-main {
  position: absolute;
  left: 1.4rem;
  right: 3rem;
  bottom: 1.4rem;
}

.hero-card-main h2 {
  font-size: 2rem;
  max-width: none;
  margin: 0.6rem 0;
}

.hero-card-main p,
.hero-card-side li,
.mini-label,
.offer-tag,
.form-note {
  color: var(--muted);
}

.chip,
.offer-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card-side {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: min(260px, calc(100% - 2.8rem));
}

.hero-card-side ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  line-height: 1.8;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.78), rgba(255, 249, 242, 0.9));
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0.8rem;
}

.ratings-line {
  margin: 0;
  color: var(--gold-deep);
  font-weight: 800;
}

.services-grid,
.offers-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.offer-card,
.testimonial-card,
.gallery-card,
.why-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-photo {
  min-height: 210px;
  margin-bottom: 1.1rem;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.45s ease, filter var(--ease-smooth);
}

.service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(185, 146, 82, 0.14);
  color: var(--gold-deep);
  font-weight: 800;
}

.price-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.price-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0.6rem 0 1rem;
}

.service-cta {
  width: 100%;
  margin-top: auto;
}

.offer-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  padding: 10px 20px;
}

.service-card:hover .service-photo,
.gallery-card:hover .gallery-photo,
.gallery-card:hover .gallery-panel {
  transform: scale(1.02);
}

.booking-section {
  background:
    radial-gradient(circle at right top, rgba(185, 146, 82, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(252, 247, 239, 0.76), rgba(248, 240, 230, 0.96));
}

.booking-points {
  margin-top: 1.5rem;
}

.point-card {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
}

.point-card strong,
.offer-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.booking-form {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(185, 146, 82, 0.22);
}

.booking-form-top {
  margin-bottom: 1rem;
}

.booking-form-top h3 {
  margin-top: 0.2rem;
}

.booking-form label {
  display: block;
  margin-bottom: 1rem;
}

.booking-form span {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
  transition: border-color var(--ease-smooth), box-shadow var(--ease-smooth), background var(--ease-smooth);
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form input:focus,
.booking-form select:focus {
  border-color: rgba(185, 146, 82, 0.42);
  box-shadow: 0 0 0 4px rgba(185, 146, 82, 0.12);
  background: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.gallery-card h3 {
  margin: 1rem 0 0.45rem;
}

.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  margin-bottom: 1rem;
}

.gallery-panel {
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease;
}

.gallery-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-photo {
  position: relative;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.45s ease;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-panel span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 4px;
}

.gallery-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(185, 146, 82, 0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 4px;
}

.offer-card.featured {
  background: linear-gradient(180deg, rgba(188, 151, 91, 0.22), rgba(255, 248, 237, 0.92));
}

.testimonial-card p {
  font-size: 1.02rem;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-head strong,
.testimonial-head span {
  display: block;
}

.testimonial-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testi-stars {
  color: #c8a96e;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

a.testi-source {
  font-size: 0.72rem;
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.avatar {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.avatar-one {
  background: linear-gradient(135deg, #efd8c0, #c69a6b);
}

.avatar-two {
  background: linear-gradient(135deg, #ead5b2, #b98f57);
}

.avatar-three {
  background: linear-gradient(135deg, #f0dfd4, #c49788);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: #fff;
  border: 1px solid #ede8e2;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 16px;
  border: 2px solid currentColor;
  opacity: 0.8;
}

.team-card h3 {
  font-size: 1.05rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.78rem;
  color: #9b8b7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

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

.loc-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(185, 146, 82, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.loc-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 5px;
}

.location-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.loc-landmark {
  font-size: 0.8rem;
  color: var(--gold);
}

.loc-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.loc-link {
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(185, 146, 82, 0.2);
  height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.why-grid {
  align-items: start;
}

.why-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.final-cta-box {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.92), rgba(255, 251, 247, 0.92)),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  background-blend-mode: screen, normal;
}

.final-cta-box h2 {
  max-width: none;
}

.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid rgba(185, 146, 82, 0.15);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand-col strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.footer-brand-col p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.footer-hours {
  margin-top: 6px !important;
  color: var(--gold-deep) !important;
  font-size: 0.8rem !important;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(185, 146, 82, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
}

.footer-links-col strong,
.footer-contact-col strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.footer-links-col a {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-links-col a:hover {
  color: var(--gold);
}

.footer-contact-col p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 6px;
}

.footer-contact-col a {
  color: var(--gold-deep);
}

.footer-bottom {
  border-top: 1px solid rgba(185, 146, 82, 0.12);
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #1e1e1e;
  color: #fffdf8;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform var(--ease-smooth), box-shadow var(--ease-smooth), background var(--ease-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.whatsapp-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bb741, #8ae58a);
  color: #111;
}

.whatsapp-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .booking-grid,
  .why-grid,
  .services-grid,
  .gallery-grid,
  .offers-grid,
  .testimonial-grid,
  .why-list,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

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

  .urgency-strip {
    gap: 0.6rem;
  }
}

@media (max-width: 768px) {
  .location-map {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  h1,
  h2 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .btn-block,
  .service-cta {
    width: 100%;
  }

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

  .hero-card-main {
    right: 1rem;
    left: 1rem;
  }

  .hero-card-side {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

  .service-card,
  .gallery-card,
  .offer-card,
  .testimonial-card,
  .why-card,
  .booking-form,
  .final-cta-box {
    padding: 1.2rem;
  }

  .service-photo,
  .gallery-photo {
    min-height: 240px;
  }

  .whatsapp-float span:last-child {
    font-size: 0.92rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    justify-content: center;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
