:root {
  --bg: #f5efe6;
  --surface: #fffaf3;
  --surface-strong: #0f4c5c;
  --surface-soft: #e4f0ec;
  --text: #16323a;
  --muted: #57727a;
  --accent: #a3c95b;
  --accent-deep: #84ab3b;
  --line: rgba(22, 50, 58, 0.12);
  --shadow: 0 24px 60px rgba(15, 76, 92, 0.16);
  --radius: 28px;
  --container: min(1380px, calc(100% - 4rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(163, 201, 91, 0.18), transparent 28%),
    radial-gradient(circle at right, rgba(15, 76, 92, 0.14), transparent 24%),
    var(--bg);
  color: var(--text);
}

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

img {
  max-width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(245, 239, 230, 0.8);
  border-bottom: 1px solid rgba(22, 50, 58, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--surface-strong), #1d7082);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.site-footer a:hover,
.contact-list a:hover {
  color: var(--surface-strong);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid,
.about-grid,
.hours-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-visual {
  position: relative;
}

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

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--surface-strong);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 1px solid rgba(15, 76, 92, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(163, 201, 91, 0.18);
  color: var(--surface-strong);
  font-weight: 700;
}

.hero-card,
.hours-card,
.contact-card,
.about-panel,
.service-card,
.about-list article,
.seo-content,
.gallery-card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(15, 76, 92, 0.09);
  box-shadow: var(--shadow);
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 76, 92, 0.05), rgba(15, 76, 92, 0.38)),
    linear-gradient(135deg, transparent 50%, rgba(163, 201, 91, 0.22));
}

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

.hero-card {
  position: relative;
  margin: -7rem 1.5rem 0;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(255, 250, 243, 0.9)),
    linear-gradient(135deg, rgba(163, 201, 91, 0.18), rgba(15, 76, 92, 0.18));
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-card-grid article {
  padding: 1rem;
  border-radius: 20px;
  background: #fff;
}

.hero-card-grid strong,
.contact-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.trust-bar {
  padding: 0 0 2rem;
}

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

.trust-grid div {
  padding: 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 76, 92, 0.08);
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.trust-grid span {
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(228, 240, 236, 0.45), transparent);
}

.section-heading {
  max-width: 64ch;
  margin-bottom: 2rem;
}

.services-grid,
.about-list,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-card-large {
  grid-row: span 2;
}

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

.gallery-card-large img {
  height: 100%;
  min-height: 625px;
}

.gallery-card figcaption {
  padding: 1.1rem 1.2rem 1.3rem;
}

.gallery-card figcaption strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  color: var(--text);
}

.gallery-card figcaption span {
  color: var(--muted);
  line-height: 1.7;
}

.service-card,
.about-list article,
.about-panel,
.hours-card,
.contact-card,
.seo-content {
  padding: 2rem;
}

.about-grid,
.hours-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.hours-list {
  display: grid;
  gap: 0.85rem;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(110px, 150px) 1fr;
  gap: 0.2rem 1rem;
  align-items: center;
  padding: 0.25rem 0 0.95rem;
  border-bottom: 1px solid var(--line);
}

.hours-list span {
  grid-row: 1 / span 2;
  font-weight: 800;
  color: var(--text);
}

.hours-list strong {
  display: block;
  color: var(--surface-strong);
  font-size: 1rem;
}

.hours-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.95rem;
}

.hours-note {
  margin-top: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.seo-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.seo-list li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.site-footer {
  padding: 2rem 0 4rem;
  background: #123a44;
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.7fr 1.2fr 0.7fr;
}

.site-footer h3,
.site-footer p,
.site-footer a {
  color: inherit;
}

.site-footer a {
  display: block;
  margin-bottom: 0.75rem;
}

.footer-services {
  display: grid;
  gap: 0.55rem;
}

.service-page main {
  padding-bottom: 3rem;
}

.service-hero {
  padding: 4.5rem 0 2rem;
}

.service-hero-grid,
.service-body-grid,
.service-links-grid {
  display: grid;
  gap: 1.5rem;
}

.service-hero-grid,
.service-body-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.service-panel,
.service-highlight,
.faq-card,
.service-link-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(15, 76, 92, 0.09);
  box-shadow: var(--shadow);
}

.service-panel h1 {
  max-width: 14ch;
}

.service-hero-image {
  overflow: hidden;
  min-height: 460px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

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

.service-body-grid {
  margin-top: 2rem;
}

.service-highlight ul,
.faq-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.service-highlight li,
.faq-card li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

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

.service-link-card strong {
  display: block;
  margin-bottom: 0.5rem;
}

.service-link-card span {
  color: var(--muted);
  line-height: 1.7;
}

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

.faq-item {
  padding: 1.6rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(15, 76, 92, 0.09);
  box-shadow: var(--shadow);
}

.rtl-page {
  direction: rtl;
  text-align: right;
}

.rtl-page .brand,
.rtl-page .hero-actions,
.rtl-page .nav,
.rtl-page .footer-grid,
.rtl-page .service-hero-grid,
.rtl-page .service-body-grid {
  direction: rtl;
}

.rtl-page .brand-copy small,
.rtl-page p,
.rtl-page .service-highlight li,
.rtl-page .service-panel,
.rtl-page .service-highlight {
  text-align: right;
}

.rtl-nav {
  justify-content: flex-start;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 58px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #28d146, #109f36);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(16, 159, 54, 0.35);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .hours-grid,
  .footer-grid,
  .services-grid,
  .about-list,
  .trust-grid,
  .service-hero-grid,
  .service-body-grid,
  .service-links-grid,
  .faq-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-card {
    margin: -4rem 1rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.98);
    border: 1px solid rgba(15, 76, 92, 0.1);
    box-shadow: var(--shadow);
  }

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

@media (max-width: 720px) {
  .hero-card-grid,
  .hours-list div {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-photo-frame {
    min-height: 420px;
  }

  .gallery-card-large {
    grid-row: auto;
  }

  .gallery-card img,
  .gallery-card-large img {
    height: 260px;
    min-height: 0;
  }

  .hours-list span {
    grid-row: auto;
    margin-bottom: 0.2rem;
  }

  .hours-list div strong {
    justify-self: start;
  }

  .brand-copy small {
    display: none;
  }

  .service-card,
  .about-list article,
  .about-panel,
  .hours-card,
  .contact-card,
  .seo-content,
  .hero-card {
    padding: 1.4rem;
  }

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

  .container {
    width: min(100% - 1rem, 1380px);
  }
}
