:root {
  --emerald: #046a38;
  --emerald-dark: #024525;
  --gold: #d4af37;
  --gold-dark: #9a741c;
  --white: #ffffff;
  --gray: #f5f5f5;
  --ink: #122018;
  --muted: #607066;
  --line: rgba(4, 106, 56, 0.16);
  --shadow: 0 22px 60px rgba(18, 32, 24, 0.14);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--emerald);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.logo-image {
  width: 104px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: var(--emerald-dark);
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 0.28rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a {
  color: #26382d;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--emerald);
}

.language-toggle {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--gray);
}

.language-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: transparent;
  color: var(--emerald-dark);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.language-toggle button.active {
  background: var(--emerald);
  color: var(--white);
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--emerald);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 78% center;
  padding: clamp(2rem, 7vw, 6rem);
  opacity: 0.2;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 82% 38%, rgba(212, 175, 55, 0.22), transparent 28rem),
    linear-gradient(90deg, rgba(2, 69, 37, 0.98) 0%, rgba(2, 69, 37, 0.88) 48%, rgba(2, 69, 37, 0.72) 100%),
    linear-gradient(135deg, var(--emerald-dark), var(--emerald));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 7rem 0 6rem;
  color: var(--white);
}

.hero-content h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.35rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-actions,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  color: #1d1604;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -2.2rem auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  background: var(--white);
  padding: 1.25rem;
}

.trust-strip strong,
.trust-strip span,
.trust-strip a {
  display: block;
}

.trust-strip strong {
  color: var(--emerald);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6rem 0;
}

.split,
.section-heading,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--emerald-dark);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 1rem 0 0.6rem;
  color: var(--emerald-dark);
  font-size: 1.18rem;
  line-height: 1.25;
}

.copy-stack p,
.section-heading p,
.contact p,
.calendar p,
.living p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-photo,
.about-brand {
  margin: 2rem 0 0;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img,
.about-brand img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--white);
}

.services,
.testimonials,
.contact {
  width: 100%;
  background: var(--gray);
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

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

.service-card,
blockquote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 14px 36px rgba(18, 32, 24, 0.07);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(4, 106, 56, 0.1);
  color: var(--gold-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.service-card p,
blockquote p {
  margin: 0;
  color: var(--muted);
}

.living-panel,
.calendar-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
  background: var(--emerald);
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.living-panel::after,
.calendar-band::after {
  content: "";
  position: absolute;
  right: -6rem;
  top: -6rem;
  width: 16rem;
  height: 16rem;
  border: 2rem solid rgba(212, 175, 55, 0.16);
  border-radius: 50%;
}

.living-panel h2,
.living-panel p,
.calendar-band h2,
.calendar-band p {
  color: var(--white);
}

.fine-print {
  font-size: 0.92rem;
  opacity: 0.82;
}

.benefit-steps {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.benefit-steps div,
.why-grid div {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 1rem;
}

.benefit-steps span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  color: #241a03;
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.why-grid div {
  min-height: 106px;
  display: flex;
  align-items: end;
  color: var(--emerald-dark);
  background: linear-gradient(135deg, rgba(4, 106, 56, 0.08), rgba(212, 175, 55, 0.14));
  font-weight: 800;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

blockquote {
  margin: 0;
}

blockquote p {
  font-size: 1.08rem;
}

cite {
  display: block;
  margin-top: 1rem;
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 800;
}

.calendar-band {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
}

.calendar-band .btn {
  justify-self: end;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.38rem;
  color: var(--emerald-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(4, 106, 56, 0.22);
  border-radius: 6px;
  background: var(--white);
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.45);
  outline-offset: 2px;
}

.full {
  grid-column: 1 / -1;
}

.form-success {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--emerald);
  font-weight: 800;
}

.contact-details a {
  color: var(--emerald);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 2.2rem max(16px, calc((100% - 1180px) / 2));
  background: #07180f;
  color: var(--white);
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.legal-links {
  display: grid;
  gap: 0.35rem;
}

.social {
  display: flex;
  gap: 0.55rem;
}

.social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .language-toggle {
    width: fit-content;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.2), transparent 18rem),
      linear-gradient(0deg, rgba(2, 69, 37, 0.96), rgba(2, 69, 37, 0.82));
  }

  .hero-media img {
    object-position: center top;
    padding: 3rem 1rem;
    opacity: 0.16;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 4rem;
  }

  .trust-strip,
  .split,
  .section-heading,
  .contact-layout,
  .living-panel,
  .calendar-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .calendar-band .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    display: none;
  }

  .logo-image {
    width: 94px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
  }

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

  .trust-strip {
    width: calc(100% - 28px);
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 4.25rem 0;
  }

  .services,
  .testimonials,
  .contact {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .card-grid,
  .why-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }
}
