/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2C3E44;
  background-color: #FAFAF8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.15; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #1A5F6B; color: #fff; padding: 8px 16px;
  border-radius: 0 0 6px 6px; z-index: 1000; font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ─── Typography ─── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A5F6B;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #1A3A42;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: #506A72;
  max-width: 520px;
  line-height: 1.75;
}
.section-header { margin-bottom: 56px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #1A5F6B;
  color: #fff;
  border-color: #1A5F6B;
}
.btn-primary:hover { background: #144A54; border-color: #144A54; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #1A5F6B;
  border-color: #1A5F6B;
}
.btn-outline:hover { background: #1A5F6B; color: #fff; }
.btn-ghost {
  background: transparent;
  color: #1A5F6B;
  border-color: #C8D8D5;
}
.btn-ghost:hover { border-color: #1A5F6B; }
.btn-light {
  background: #fff;
  color: #1A5F6B;
  border-color: #fff;
}
.btn-light:hover { background: #f0f7f6; transform: translateY(-1px); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(80, 106, 114, 0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(26, 95, 107, 0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A3A42;
}
.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #506A72;
}
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #2C3E44;
  transition: color 0.2s;
  position: relative;
}
.nav-list a:not(.nav-phone):hover { color: #1A5F6B; }
.nav-list a:not(.nav-phone)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: #1A5F6B;
  transition: width 0.25s ease;
}
.nav-list a:not(.nav-phone):hover::after { width: 100%; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #1A5F6B !important;
  background: #E8F1F0;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-phone:hover { background: #D0E2DF !important; }
.nav-phone::after { display: none !important; }

/* ─── Mobile Nav ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: #2C3E44;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a { font-size: 18px; }
  .nav-phone { font-size: 15px; padding: 12px 24px; }
}

/* ─── Hero ─── */
.hero {
  padding-top: 76px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 76px);
  padding: 0;
  max-width: 100%;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  background: #FAFAF8;
  position: relative;
}
.hero-content::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  width: 1px; height: 60%;
  background: #D8E4E1;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A5F6B;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #1A3A42;
  margin-bottom: 28px;
}
.hero-title .line { display: block; }
.hero-title .line.accent {
  font-style: italic;
  font-weight: 500;
  color: #1A5F6B;
}
.hero-desc {
  font-size: 1.05rem;
  color: #506A72;
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-img-frame {
  position: absolute;
  inset: 0;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-accent-block {
  position: absolute;
  bottom: 40px; left: -40px;
  background: #1A5F6B;
  color: #fff;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.accent-block-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.accent-block-text {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.hero-divider {
  height: 1px;
  background: linear-gradient(90deg, #1A5F6B 0%, #D8E4E1 30%, transparent 100%);
  margin: 0 80px;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 40px; }
  .hero-content::after { display: none; }
  .hero-image { height: 50vh; }
  .hero-accent-block { left: 24px; bottom: 24px; }
  .hero-divider { margin: 0 40px; }
}
@media (max-width: 640px) {
  .hero-content { padding: 48px 24px; }
  .hero-title { font-size: 2.4rem; }
  .hero-image { height: 40vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-divider { margin: 0 24px; }
}

/* ─── Services ─── */
.services {
  padding: 100px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 32px;
  border: 1px solid #E8EDEB;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #FAFAF8;
}
.service-card:hover {
  border-color: #1A5F6B;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 95, 107, 0.1);
}
.service-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #E8F1F0;
  margin-bottom: 22px;
}
.service-card:hover .service-icon { background: #1A5F6B; }
.service-card:hover .service-icon svg { stroke: #fff; }
.service-title {
  font-size: 1.35rem;
  color: #1A3A42;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.92rem;
  color: #506A72;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: #FAFAF8;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 95, 107, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 40px; right: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 5px solid #FAFAF8;
  box-shadow: 0 12px 40px rgba(26, 95, 107, 0.1);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-strip {
  position: absolute;
  top: 30px; right: 40px;
  width: 120px; height: 120px;
  border: 2px solid #C8D8D5;
  border-radius: 12px;
  z-index: -1;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content > p {
  font-size: 1rem;
  color: #506A72;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid #E8EDEB;
  border-bottom: 1px solid #E8EDEB;
}
.stat { flex: 1; text-align: center; }
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1A5F6B;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #506A72;
}
.stat-divider {
  width: 1px; height: 40px;
  background: #D8E4E1;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { min-height: 400px; }
}

/* ─── Gallery ─── */
.gallery {
  padding: 100px 0;
  background: #fff;
}
.gallery .section-header { text-align: center; }
.gallery .section-header .section-desc { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 60, 66, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 80px 0;
  background: #1A3A42;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(26, 95, 107, 0.3);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(127, 191, 191, 0.08);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-eyebrow { color: #7FBFBF; }
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  line-height: 1.75;
}
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { margin: 0 auto; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: #FAFAF8;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-intro {
  font-size: 1rem;
  color: #506A72;
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1A3A42;
  margin-bottom: 4px;
}
.contact-item dd {
  font-size: 0.95rem;
  color: #506A72;
  line-height: 1.7;
  padding-left: 28px;
}
.contact-item a {
  color: #1A5F6B;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-item a:hover { border-bottom-color: #1A5F6B; }

/* ─── Form ─── */
.contact-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 44px;
  border: 1px solid #E8EDEB;
  box-shadow: 0 8px 40px rgba(26, 95, 107, 0.06);
}
.form-title {
  font-size: 1.6rem;
  color: #1A3A42;
  margin-bottom: 6px;
}
.form-note {
  font-size: 0.9rem;
  color: #506A72;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2C3E44;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #D8E4E1;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #2C3E44;
  background: #FAFAF8;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1A5F6B;
  box-shadow: 0 0 0 3px rgba(26, 95, 107, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A8BDB8; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #E8F1F0;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1A5F6B;
}
.form-success.show { display: flex; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
}

/* ─── Footer ─── */
.site-footer {
  background: #1A3A42;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
  color: rgba(255,255,255,0.55);
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: #7FBFBF; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-contact a:hover { color: #7FBFBF; }
.logo-footer .logo-name { color: #fff; }
.logo-footer .logo-tagline { color: rgba(255,255,255,0.5); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  gap: 16px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 4px; }
}
</style>
