:root {
  --cream: #fbf6ed;
  --porcelain: #fffdf8;
  --linen: #f1e4d2;
  --mist: #e7f0e7;
  --sage: #8aa385;
  --sage-deep: #506f5a;
  --teal: #3f6f6a;
  --gold: #c8a14a;
  --clay: #d7a38d;
  --ink: #243127;
  --muted: #657266;
  --line: rgba(36, 49, 39, 0.13);
  --shadow: 0 20px 45px rgba(56, 72, 55, 0.12);
  --shadow-soft: 0 10px 24px rgba(56, 72, 55, 0.1);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 1000;
  background: var(--ink);
  color: var(--porcelain);
  padding: 10px 14px;
  border-radius: 6px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 58px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
}

h1 {
  font-size: 4.3rem;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.35rem;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  justify-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
}

.nav-shell {
  width: min(1220px, calc(100% - 32px));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark,
.card-icon,
.meta-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: var(--porcelain);
  box-shadow: 0 10px 24px rgba(80, 111, 90, 0.22);
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--ink);
  background: var(--mist);
}

.primary-nav .nav-cta {
  margin-left: 8px;
  color: var(--porcelain);
  background: var(--sage-deep);
  box-shadow: 0 12px 24px rgba(80, 111, 90, 0.2);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  color: var(--porcelain);
  background: var(--teal);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--porcelain);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 246, 237, 0.95) 0%, rgba(251, 246, 237, 0.82) 42%, rgba(231, 240, 231, 0.28) 100%),
    linear-gradient(0deg, rgba(251, 246, 237, 0.72) 0%, rgba(251, 246, 237, 0.18) 42%);
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  padding: 82px 0 58px;
  display: grid;
  gap: 20px;
  max-width: 780px;
  margin-left: max(16px, calc((100% - var(--max)) / 2));
}

.hero .lead {
  font-size: 1.22rem;
  color: #4e5f50;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn-primary {
  color: var(--porcelain);
  background: var(--sage-deep);
  box-shadow: 0 16px 30px rgba(80, 111, 90, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--teal);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--ink);
  background: var(--porcelain);
  border-color: rgba(80, 111, 90, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-gold {
  color: var(--ink);
  background: #ead69f;
}

.btn-whatsapp {
  color: var(--porcelain);
  background: #2f7f5f;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.stats-strip {
  padding: 22px 0 0;
}

.stat {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(80, 111, 90, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 6px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--linen);
}

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

.content-stack {
  display: grid;
  gap: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 45%, var(--gold) 0 30%, var(--sage-deep) 31% 100%);
}

.feature-band {
  background: linear-gradient(135deg, #fffaf1, #e4efe5);
  border-block: 1px solid var(--line);
}

.grid-3,
.grid-4,
.service-grid,
.blog-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

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

.benefit-card,
.why-card,
.service-card,
.blog-card,
.testimonial-card,
.info-card,
.contact-card,
.faq-item,
.booking-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.benefit-card,
.why-card,
.info-card,
.contact-card {
  padding: 24px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--sage-deep);
  margin-bottom: 18px;
}

.benefit-card p,
.why-card p,
.service-card p,
.blog-card p,
.info-card p,
.contact-card p {
  color: var(--muted);
  margin-top: 10px;
}

.info-card h2,
.contact-card h2 {
  font-size: 1.45rem;
}

.service-card,
.blog-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(80, 111, 90, 0.3);
  box-shadow: var(--shadow);
}
.card-image {
  height: 280px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 260ms ease;
}

.service-card:hover .card-image img,
.blog-card:hover .card-image img {
  transform: scale(1.035);
}

.card-body {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 6px;
  background: #f2e7d2;
  color: #6f5930;
  font-size: 0.78rem;
  font-weight: 800;
}

.why-card {
  min-height: 100%;
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card blockquote {
  margin: 0;
  color: #3d493f;
  font-size: 1.02rem;
}

.testimonial-card cite {
  display: block;
  margin-top: 18px;
  color: var(--sage-deep);
  font-style: normal;
  font-weight: 800;
}

.cta-band {
  padding: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sage-deep), var(--teal));
  color: var(--porcelain);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  color: rgba(255, 253, 248, 0.82);
  margin-top: 8px;
  max-width: 620px;
}

.page-hero {
  padding: 82px 0 58px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(231, 240, 231, 0.78)),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--sage-deep);
  font-weight: 800;
}

.article-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.article-content {
  display: grid;
  gap: 28px;
}

.article-section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.article-section h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.article-section p + p,
.article-section ul,
.article-section ol {
  margin-top: 14px;
}

.booking-panel {
  position: sticky;
  top: 98px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.booking-panel p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--mist);
  color: var(--sage-deep);
  flex: 0 0 auto;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 800;
  color: #39483d;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(80, 111, 90, 0.24);
  border-radius: 6px;
  background: #fffefa;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 4px rgba(138, 163, 133, 0.18);
}

.form-note {
  min-height: 24px;
  color: var(--sage-deep);
  font-weight: 800;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.meta-icon {
  width: 34px;
  height: 34px;
  color: var(--sage-deep);
  background: var(--mist);
  border-radius: 8px;
}

.map-placeholder {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(80, 111, 90, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(80, 111, 90, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #fff8eb, #dde9dd);
  background-size: 42px 42px, 42px 42px, auto;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.map-pin {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--sage-deep);
  position: relative;
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  left: 20px;
  top: 20px;
}

.map-placeholder strong,
.map-placeholder span {
  display: block;
  transform: none;
}

.hours-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

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

.site-footer {
  background: #223028;
  color: rgba(255, 253, 248, 0.82);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 0.8fr;
  gap: 34px;
}

.footer-brand .brand {
  color: var(--porcelain);
}

.footer-brand p,
.footer-links a,
.footer-contact p {
  color: rgba(255, 253, 248, 0.72);
}

.footer-brand p {
  margin-top: 16px;
  max-width: 360px;
}

.footer-title {
  color: var(--porcelain);
  font-weight: 850;
  margin-bottom: 14px;
}

.footer-links,
.social-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--porcelain);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 253, 248, 0.72);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 15px;
  border-radius: 6px;
  color: var(--porcelain);
  background: #2f7f5f;
  box-shadow: 0 16px 34px rgba(28, 95, 68, 0.3);
  font-weight: 850;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.icon svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
  stroke: currentColor;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .grid-4,
  .grid-3,
  .service-grid,
  .blog-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .article-hero,
  .article-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-shell {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    max-height: calc(100svh - 104px);
    overflow: auto;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--porcelain);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-content {
    padding: 76px 0 48px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero .lead,
  .lead {
    font-size: 1rem;
  }

  .hero-stats,
  .grid-4,
  .grid-3,
  .service-grid,
  .blog-grid,
  .testimonial-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .footer-bottom {
    display: grid;
  }

  .cta-band {
    padding: 28px;
  }

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

  .float-label {
    display: none;
  }

  .floating-whatsapp {
    width: 52px;
    justify-content: center;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
.admin-btn{
    background:#222 !important;
    color:#fff !important;
    margin-left:10px;
}

.admin-btn:hover{
    background:#000 !important;
}
.service-card .card-image,
.blog-card .card-image,
.image-frame {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .card-image img,
.blog-card .card-image img,
.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}
