/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0A2540;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--light { background: #F4F8F7; }
.section--dark { background: #0A2540; color: #fff; }
.section__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6FBFAE;
  margin-bottom: .75rem;
}
.section__eyebrow--light { color: #98D4C8; }
.section__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #0A2540;
}
.section__headline--light { color: #fff; }
.section__sub {
  font-size: 1.0625rem;
  color: #4A6274;
  line-height: 1.7;
}
.section--dark .section__sub { color: #9AB5C7; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8125rem 1.75rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn--primary {
  background: #6FBFAE;
  color: #0A2540;
  border-color: #6FBFAE;
}
.btn--primary:hover { background: #4FA896; border-color: #4FA896; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--full { width: 100%; }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,37,64,.07);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(10,37,64,.08); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav__logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-weight: 600;
  font-size: 1.0625rem;
  color: #0A2540;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: #0A2540;
  color: #98D4C8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav__logo-text { display: none; }
@media (min-width: 640px) { .nav__logo-text { display: inline; } }
.nav__links { gap: 2rem; }
.nav__links a {
  font-size: .9375rem;
  font-weight: 500;
  color: #4A6274;
  position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6FBFAE;
  transition: width .25s;
}
.nav__links a:hover { color: #0A2540; }
.nav__links a:hover::after { width: 100%; }
.nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #0A2540;
  padding: .5rem;
  display: flex;
  align-items: center;
}
.nav__mobile {
  background: #fff;
  border-top: 1px solid rgba(10,37,64,.07);
  box-shadow: 0 12px 32px rgba(10,37,64,.1);
}
.nav__mobile a {
  display: block;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #4A6274;
  border-bottom: 1px solid rgba(10,37,64,.05);
  transition: color .2s, padding-left .2s;
}
.nav__mobile a:hover { color: #0A2540; padding-left: .5rem; }
.nav__mobile a:last-child { border-bottom: none; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/1070464/pexels-photo-1070464.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(4,16,32,.82) 0%,
    rgba(10,37,64,.72) 50%,
    rgba(10,37,64,.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 2rem;
  animation: fadeUp .8s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #98D4C8;
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__accent { color: #98D4C8; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── About ─────────────────────────────────────────────────── */
.about__img-wrap { position: relative; }
.about__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(10,37,64,.15);
}
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: #0A2540;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  font-weight: 500;
  box-shadow: 0 12px 32px rgba(10,37,64,.25);
}
.about__badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(152,212,200,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #98D4C8;
  flex-shrink: 0;
}
.about__text { max-width: 520px; }
.about__text p {
  font-size: 1.0625rem;
  color: #4A6274;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__features { margin-top: 2rem; display: flex; flex-direction: column; gap: .875rem; }
.about__features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 500;
  color: #0A2540;
}
.about__check { color: #6FBFAE; flex-shrink: 0; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,37,64,.07);
  transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: 0 16px 48px rgba(10,37,64,.12); transform: translateY(-4px); }
.card__img-wrap { position: relative; overflow: hidden; }
.card__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .5s;
}
.card:hover .card__img { transform: scale(1.04); }
.card__img-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0A2540;
  color: #98D4C8;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .375rem .75rem;
  border-radius: 4px;
}
.card__body { padding: 2rem; }
.card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #0A2540;
}
.card__desc {
  font-size: .9375rem;
  color: #4A6274;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.card__list { display: flex; flex-direction: column; gap: .625rem; }
.card__list li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: #0A2540;
}
.card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #6FBFAE;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Gallery ───────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--wide { grid-column: 1 / -1; }
.gallery__item--wide img { height: 400px; }
.gallery__item:not(.gallery__item--wide) img { height: 240px; }

/* ── Info Rows ─────────────────────────────────────────────── */
.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-row__icon {
  width: 48px;
  height: 48px;
  background: rgba(111,191,174,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6FBFAE;
  flex-shrink: 0;
}
.info-row__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6FBFAE;
  margin-bottom: .25rem;
}
.info-row__value {
  font-size: 1rem;
  color: #0A2540;
  line-height: 1.6;
}
.info-row__value a { color: #0A2540; }

/* ── Contact Form ──────────────────────────────────────────── */
.contact-form-wrap { max-width: 520px; margin: 0 auto; width: 100%; }
.contact-form {
  background: #F4F8F7;
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #0A2540;
}
.contact-form__sub {
  font-size: .9375rem;
  color: #4A6274;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .8125rem;
  font-weight: 600;
  color: #0A2540;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid rgba(10,37,64,.12);
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .9375rem;
  color: #0A2540;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #6FBFAE;
  box-shadow: 0 0 0 3px rgba(111,191,174,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9AB5C7; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A6274' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Success state */
.contact-form__success {
  text-align: center;
  padding: 2rem 0;
  animation: fadeUp .5s ease-out;
}
.success-icon { color: #6FBFAE; margin: 0 auto 1rem; }
.success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: .5rem;
}
.success-text { font-size: .9375rem; color: #4A6274; }
.hidden { display: none !important; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #0A2540;
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 768px) { .footer__top { grid-template-columns: 1fr; gap: 2rem; } }
.footer__brand { display: flex; flex-direction: column; gap: .75rem; }
.footer__brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
}
.footer__tagline { font-size: .875rem; line-height: 1.6; max-width: 260px; }
.footer__links-label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #98D4C8;
  margin-bottom: .875rem;
}
.footer__links nav { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color .2s, padding-left .2s;
}
.footer__links a:hover { color: #fff; padding-left: .375rem; }
.footer__contact p { font-size: .9375rem; line-height: 1.7; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.5rem 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}

/* ── Hover link utility ────────────────────────────────────── */
.hover-link { transition: color .2s; }
.hover-link:hover { color: #6FBFAE; }

/* ── Scroll animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
