:root {
  --bg: #f8f3e8;
  --surface: rgba(255, 252, 246, 0.88);
  --text: #17302a;
  --muted: #57655e;
  --brand: #0f766e;
  --brand-deep: #0a4f49;
  --accent: #d7a24d;
  --shadow: 0 18px 52px rgba(23, 48, 42, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(215, 162, 77, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 28%),
    linear-gradient(180deg, #fcfaf5 0%, #f7f0e2 100%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(252, 250, 245, 0.84);
  border-bottom: 1px solid rgba(23, 48, 42, 0.08);
}

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

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 48px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy {
  min-width: 0;
}

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

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.nav-links,
.nav-actions,
.hero-actions,
.hero-points,
.footer-links,
.page-grid {
  display: flex;
}

.nav-links {
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--brand-deep);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.22);
}

.btn-secondary {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 118, 110, 0.18);
}

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

.hero-grid,
.split-grid,
.page-hero-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 2rem;
  align-items: center;
}

.page-hero-grid.reverse {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.eyebrow,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(15, 118, 110, 0.08);
  color: var(--brand-deep);
}

.eyebrow::before,
.mini-tag::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.mini-tag {
  background: rgba(255, 255, 255, 0.12);
}

.hero-copy h1,
.page-hero-copy h1,
.section-copy h2,
.section-head h2,
.contact-card h2 {
  margin: 1rem 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: clamp(3.3rem, 8vw, 6.2rem);
}

.page-hero-copy h1,
.section-copy h2,
.section-head h2,
.contact-card h2 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

.hero-copy p,
.page-hero-copy p,
.section-copy p,
.section-head p,
.feature-card p,
.page-card span,
.service-detail p,
.forex-card p,
.timeline-item p,
.info-card p,
.contact-card p,
.visual-overlay p,
.info-banner p,
.site-footer p {
  color: var(--muted);
  line-height: 1.82;
  max-width: 100%;
}

.hero-actions,
.hero-points,
.footer-links,
.page-grid {
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin: 1.5rem 0 1.25rem;
  align-items: center;
}

.hero-points {
  margin-top: 0.35rem;
  align-items: center;
  gap: 1rem;
}

.hero-points span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 48, 42, 0.08);
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual img,
.page-hero-image img,
.service-detail img,
.image-card img,
.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-card,
.feature-card,
.page-card,
.service-detail,
.forex-card,
.timeline-panel,
.info-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.visual-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-home .visual-card img {
  object-position: center center;
  filter: saturate(1.02) contrast(1.03);
}

.visual-overlay {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.88);
}

.visual-overlay strong,
.page-card strong,
.feature-card h3,
.service-detail h3,
.forex-card h3,
.info-card h3,
.timeline-item strong,
.info-banner strong {
  display: block;
  margin-bottom: 0.45rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.feature-grid,
.card-grid.three,
.forex-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.info-card,
.forex-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.split-grid,
.contact-layout {
  align-items: stretch;
}

.section-copy,
.side-banner {
  display: grid;
  align-content: center;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08));
}

.check-list {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

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

.image-card,
.page-hero-image,
.service-detail,
.contact-card,
.timeline-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-card {
  min-height: 240px;
}

.image-card.tall {
  grid-row: span 2;
  min-height: 500px;
}

.page-grid {
  gap: 1rem;
}

.page-card {
  flex: 1 1 230px;
  min-height: 180px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.page-card:hover,
.service-detail:hover,
.feature-card:hover,
.forex-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(23, 48, 42, 0.18);
}

.page-hero-image {
  min-height: 420px;
}

.service-detail {
  display: grid;
  grid-template-rows: 220px auto;
}

.service-detail div {
  padding: 1.3rem;
}

.info-banner,
.contact-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.timeline-panel {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(23, 48, 42, 0.08);
}

.quote-box {
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(215, 162, 77, 0.12));
  border: 1px solid rgba(23, 48, 42, 0.08);
}

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

.contact-stack {
  display: grid;
  gap: 0.95rem;
  margin: 1.2rem 0 1.4rem;
}

.contact-stack article {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 48, 42, 0.08);
}

.contact-stack strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.accent-card {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.95), rgba(10, 79, 73, 1));
  color: #fff;
}

.accent-card .mini-tag,
.accent-card p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-image {
  margin-top: 1.2rem;
  border-radius: 20px;
  min-height: 280px;
}

.site-footer {
  padding: 1.8rem 0 3rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.78rem 1rem 0.78rem 0.78rem;
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 18px 38px rgba(20, 96, 50, 0.28);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(20, 96, 50, 0.34);
}

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

.whatsapp-icon img {
  width: 30px;
  height: 20px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-radius: 24px;
  background: rgba(23, 48, 42, 0.96);
  color: rgba(255, 255, 255, 0.82);
}

.footer-shell strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
}

.footer-links {
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .page-hero-grid,
  .contact-layout,
  .feature-grid,
  .card-grid.three,
  .forex-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-hero-image,
  .visual-card {
    min-height: 380px;
  }

  .contact-layout {
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .site-header {
    position: sticky;
  }

  .hero,
  .page-hero,
  .section {
    padding: 4.25rem 0;
  }

  .feature-grid,
  .card-grid.three,
  .forex-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .page-card {
    min-height: 0;
  }

  .footer-shell {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    padding: 0.45rem 0;
    min-height: 0;
  }

  .menu-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    display: none;
  }

  .site-header.open .nav-links,
  .site-header.open .nav-actions {
    display: flex;
  }

  .site-header.open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.5rem 0 0.2rem;
  }

  .site-header.open .nav-actions {
    padding: 0.1rem 0 0.25rem;
  }

  .nav-links a,
  .nav-actions .btn {
    width: 100%;
  }

  .nav-links a {
    padding: 0.58rem 0;
  }

  .nav-links a::after {
    bottom: 0.2rem;
  }

  .hero,
  .page-hero,
  .section {
    padding: 3.6rem 0;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy span {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
    line-height: 0.98;
  }

  .page-hero-copy h1,
  .section-copy h2,
  .section-head h2,
  .contact-card h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .hero-copy p,
  .page-hero-copy p,
  .section-copy p,
  .section-head p,
  .feature-card p,
  .page-card span,
  .service-detail p,
  .forex-card p,
  .timeline-item p,
  .info-card p,
  .contact-card p,
  .visual-overlay p,
  .info-banner p,
  .site-footer p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-actions {
    margin: 1.3rem 0 1.1rem;
    gap: 0.75rem;
  }

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

  .hero-points {
    gap: 0.75rem;
    margin-top: 0.15rem;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .feature-grid,
  .card-grid.three,
  .forex-grid,
  .image-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .image-card.tall {
    grid-row: auto;
    min-height: 260px;
  }

  .visual-card {
    min-height: 340px;
  }

  .visual-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
  }

  .page-hero-image {
    min-height: 260px;
  }

  .service-detail {
    grid-template-rows: 200px auto;
  }

  .service-detail div,
  .info-banner,
  .contact-card,
  .timeline-panel {
    padding: 1.2rem;
  }

  .contact-stack {
    gap: 0.8rem;
    margin: 1rem 0 1.2rem;
  }

  .contact-stack article,
  .timeline-item {
    padding: 0.9rem;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem;
    border-radius: 20px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 0.8rem 1rem;
  }

  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span:last-child {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .nav-wrap {
    padding: 0.38rem 0;
  }

  .brand {
    max-width: calc(100% - 52px);
    gap: 0.65rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
  }

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

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero,
  .page-hero,
  .section {
    padding: 3.2rem 0;
  }

  .eyebrow,
  .mini-tag {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.7rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .page-hero-copy h1,
  .section-copy h2,
  .section-head h2,
  .contact-card h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .btn {
    min-height: 46px;
    padding: 0.85rem 1.05rem;
    font-size: 0.92rem;
  }

  .hero-points span {
    padding: 0.68rem 0.85rem;
    font-size: 0.88rem;
  }

  .visual-card {
    min-height: 300px;
    border-radius: 24px;
  }

  .page-hero-image,
  .image-card,
  .image-card.tall,
  .contact-image {
    min-height: 220px;
  }

  .page-card,
  .feature-card,
  .info-card,
  .forex-card {
    padding: 1.15rem;
  }

  .quote-box {
    padding: 0.95rem 1rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-icon {
    width: 34px;
    height: 34px;
  }

  .whatsapp-icon img {
    width: 18px;
    height: 18px;
  }
}
