
:root {
  --navy: #061f34;
  --navy-2: #082a45;
  --teal: #168d96;
  --teal-dark: #0f7179;
  --soft-teal: #e8f4f5;
  --gold: #c8a553;
  --ink: #12263a;
  --muted: #647383;
  --line: #e4eaee;
  --panel: #ffffff;
  --bg: #f7f9fa;
  --shadow: 0 14px 32px rgba(6, 31, 52, 0.10);
  --radius: 18px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.58;
}
h1, h2, h3, .brand {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  color: var(--navy);
}
a { color: inherit; text-decoration: none; }
p { margin-bottom: 14px; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}
.brand {
  color: #fff;
  font-size: 35px;
  letter-spacing: -0.8px;
  position: relative;
  display: inline-block;
}
.brand::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: -8px;
  width: 58px;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #2fb6bd, transparent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}
.nav-links a {
  color: rgba(255,255,255,0.84);
  padding: 28px 0 24px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  border-bottom-color: #2fb6bd;
}
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 20px rgba(22,141,150,0.22);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline {
  color: var(--teal);
  background: rgba(255,255,255,0.86);
  border-color: var(--teal);
}
.hero {
  overflow: hidden;
  background: radial-gradient(circle at right 15%, rgba(200,165,83,0.18), transparent 32%),
              linear-gradient(110deg, #fff 0%, #fff 50%, rgba(232,244,245,0.86) 100%);
}
.hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 50px;
  padding: 76px 0 58px;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -1.5px;
}
.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: #314457;
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.brand-panel {
  justify-self: center;
  width: min(430px,100%);
  border-radius: 32px 32px 8px 8px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 44px 42px;
  box-shadow: 0 26px 46px rgba(6,31,52,0.18);
  position: relative;
  overflow: hidden;
}
.brand-panel::before {
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background: rgba(200,165,83,0.20);
  right:-70px;
  top:-70px;
}
.brand-panel::after {
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background: rgba(22,141,150,0.30);
  left:-70px;
  bottom:-80px;
}
.mark {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.42);
  display:grid;
  place-items:center;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.06);
}
.mark span { font-family: Georgia, serif; font-size: 58px; color: #fff; }
.brand-panel h2 { position: relative; z-index:1; color:#fff; font-size:42px; margin-bottom:10px; }
.brand-panel p { position: relative; z-index:1; color: rgba(255,255,255,0.82); font-size:16px; }
.section { padding: 62px 0; }
.section.alt { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { max-width: 760px; margin-bottom: 28px; }
.section-title h2 { margin-bottom: 12px; font-size: 38px; }
.accent-line { width: 66px; height: 3px; border-radius: 99px; background: var(--teal); margin-bottom: 14px; }
.lead { color: var(--muted); font-size: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; font-size: 22px; }
.card p, .card li { color: var(--muted); font-size: 15px; }
.card ul { margin: 12px 0 0 20px; }
.icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--soft-teal);
  color: var(--teal);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 14px;
}
.service-link { display:block; height:100%; }
.service-link:hover .card { transform: translateY(-2px); border-color: rgba(22,141,150,0.35); }
.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
}
.founder-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(6,31,52,0.08), rgba(232,244,245,0.98));
  box-shadow: var(--shadow);
}
.founder-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.founder-photo-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(6,31,52,0.88);
  color: #fff;
  backdrop-filter: blur(10px);
}
.founder-photo-caption b { display: block; font-family: Georgia, serif; font-size: 22px; }
.founder-photo-caption small { color: rgba(255,255,255,0.78); font-weight: 700; }
.small-label {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.contact-inline { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--soft-teal);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}
.quote-card {
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.quote-mark { color: var(--teal); font-family: Georgia, serif; font-size: 70px; line-height: 0.7; }
.booking {
  padding: 62px 0;
  background: #f7f9fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.booking-panel, .booking-form {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.booking-panel h2 { margin-bottom: 12px; font-size: 36px; }
.booking-panel p { color: var(--muted); font-size: 15px; }
.booking-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--soft-teal);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}
.booking-form { display: grid; gap: 16px; }
.booking-form label { display: grid; gap: 7px; color: var(--navy); font-weight: 800; font-size: 14px; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #d7e1e7;
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.booking-form textarea { min-height: 96px; resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: 2px solid rgba(22,141,150,0.24);
  border-color: var(--teal);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-helper { margin-top: -4px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.page-hero {
  padding: 70px 0 54px;
  background: linear-gradient(110deg, #fff 0%, rgba(232,244,245,0.85) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 880px; margin-bottom: 18px; font-size: clamp(40px, 4.5vw, 60px); }
.page-hero p { max-width: 790px; color: #314457; font-size: 18px; }
.breadcrumb { margin-bottom: 18px; color: var(--teal); font-weight: 800; font-size: 13px; }
.content-layout { display: grid; grid-template-columns: 1fr 330px; gap: 36px; align-items: start; }
.sidebar { position: sticky; top: 96px; }
.sidebar .card { background: var(--soft-teal); }
.check-list { list-style: none; margin: 16px 0 0; padding: 0; }
.check-list li { margin-bottom: 10px; padding-left: 28px; position: relative; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.footer { padding: 42px 0 18px; background: var(--navy); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.1fr 1fr 1.4fr; gap: 38px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.16); }
.footer .brand { margin-bottom: 14px; font-size: 32px; }
.footer h4 { margin-bottom: 14px; font-size: 16px; }
.footer p, .footer li, .footer a { color: rgba(255,255,255,0.76); font-size: 14px; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 16px; color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-bottom a { margin-left: 18px; color: rgba(255,255,255,0.72); }
@media (max-width: 1020px) {
  .nav { min-height: 72px; }
  .mobile-menu-toggle { display: inline-flex; order: 3; }
  .site-header .btn { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px;
    border-radius: 14px;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 20px 32px rgba(6,31,52,0.24);
  }
  .nav-links.open { display: grid; grid-template-columns: 1fr; gap: 4px; }
  .nav-links a { display: block; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.10); color: #fff; border-radius: 10px; }
  .nav-links a:hover, .nav-links a.active { background: rgba(47,182,189,0.18); border-bottom-color: transparent; }
  .hero-grid, .about-grid, .booking-grid, .content-layout { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar { position: static; }
}
@media (max-width: 680px) {
  .brand { font-size: 31px; }
  .hero-grid { padding: 48px 0 36px; }
  .hero h1, .page-hero h1 { font-size: 39px; }
  .grid-3, .grid-2, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .booking-form, .booking-panel, .card { padding: 24px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }
}
