:root {
  --ink: #0a1f33;
  --ink-soft: #1a3348;
  --green: #2aaa55;
  --green-deep: #1f8a42;
  --sand: #d4a574;
  --sand-soft: #e8c9a8;
  --paper: #f4f1ec;
  --paper-2: #ebe6df;
  --white: #fffcf8;
  --muted: #5c6b78;
  --line: rgba(10, 31, 51, 0.12);
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Nav —— */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.4s;
}

.site-nav.scrolled {
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(14px);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-logo {
  height: 42px;
  width: auto;
  display: block;
}

.nav-logo-light {
  display: none;
}

.site-nav.scrolled .nav-logo-dark {
  display: none;
}

.site-nav.scrolled .nav-logo-light {
  display: block;
}

.nav-links {
  display: none;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.25s;
}

.site-nav.scrolled .nav-links a {
  color: var(--ink);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255, 252, 248, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
}

.site-nav.scrolled .lang-switch {
  border-color: var(--line);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.site-nav.scrolled .lang-switch button {
  color: var(--ink);
}

.lang-switch button.active {
  background: var(--green);
  color: var(--white);
}

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.35rem;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: background 0.25s;
}

.site-nav.scrolled .menu-btn span {
  background: var(--ink);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: 6rem 2rem 2rem;
}

.mobile-menu.open {
  display: block;
  animation: fadeIn 0.35s var(--ease);
}

.mobile-menu a {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 31, 51, 0.82) 0%,
      rgba(10, 31, 51, 0.55) 42%,
      rgba(10, 31, 51, 0.25) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 31, 51, 0.2) 0%,
      rgba(10, 31, 51, 0.15) 40%,
      rgba(10, 31, 51, 0.78) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 7.5rem 0 5rem;
  max-width: 40rem;
  margin-left: max(1.25rem, calc((100% - 1120px) / 2));
  animation: riseIn 1s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-soft);
  margin-bottom: 1.35rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.75rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 10ch;
  margin-bottom: 1.35rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 32ch;
  opacity: 0.88;
  margin-bottom: 2.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-deep);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 252, 248, 0.55);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.btn-ink:hover {
  background: var(--ink-soft);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* —— Sections —— */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* —— Services —— */
.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.service-row.in-view {
  opacity: 1;
  transform: none;
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.04em;
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.service-row p {
  color: var(--muted);
  max-width: 52ch;
}

.note-band {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.note-band-text {
  padding: clamp(2rem, 5vw, 3rem);
}

.note-band-text h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.note-band-text p {
  opacity: 0.85;
  max-width: 40ch;
}

.note-band img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (min-width: 800px) {
  .service-row {
    grid-template-columns: 3rem 1fr;
  }
  .note-band {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .note-band img {
    height: 100%;
    min-height: 280px;
  }
}

/* —— About —— */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

.about-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.coverage {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.coverage h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
}

.countries li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-left: 0.9rem;
}

.countries li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 1px;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* —— Testimonials —— */
.quotes {
  display: grid;
  gap: 2.5rem;
}

.quote {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.quote.in-view {
  opacity: 1;
  transform: none;
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (min-width: 800px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.quotes-cta {
  margin-top: 3rem;
  text-align: center;
}

/* —— Gallery —— */
.gallery-section {
  background: var(--ink);
  color: var(--white);
}

.gallery-section .eyebrow {
  color: var(--sand-soft);
}

.gallery-section .section-head p {
  color: rgba(255, 252, 248, 0.7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.gallery-grid figure {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-grid figure:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.map-wrap {
  margin-top: 2.5rem;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.map-caption {
  margin-top: 1.25rem;
}

.map-caption h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.map-caption p {
  color: rgba(255, 252, 248, 0.65);
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0.85rem;
  }
  .gallery-grid figure:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    height: 100%;
  }
  .gallery-grid figure {
    aspect-ratio: auto;
    min-height: 220px;
  }
}

/* —— Pricing —— */
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), border-color 0.3s;
}

.price-card.in-view {
  opacity: 1;
  transform: none;
}

.price-card.popular {
  border-color: var(--green);
  background: linear-gradient(180deg, #f0faf3 0%, var(--white) 40%);
}

.price-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.price-amount {
  margin-bottom: 1.5rem;
}

.price-amount strong {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-amount span {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.price-card li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.price-card li .mark {
  color: var(--green-deep);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card li.muted {
  color: #9aa5ae;
}

.price-card li.muted .mark {
  color: #c4c9ce;
}

.custom-quote {
  margin-top: 2.5rem;
  padding: 2.25rem;
  background: var(--paper-2);
  text-align: center;
}

.custom-quote h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.custom-quote p {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: stretch;
  }
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.25s, background 0.25s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.contact-aside h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.info-list {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 2rem;
}

.info-item strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.socials a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.contact-photo {
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 252, 248, 0.65);
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-col a,
.footer-col li {
  color: rgba(255, 252, 248, 0.65);
  font-size: 0.95rem;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 252, 248, 0.5);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a:hover {
  color: var(--white);
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

/* —— Back to top —— */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, background 0.25s;
  box-shadow: 0 8px 24px rgba(10, 31, 51, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: var(--green);
}

/* —— Motion —— */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
