:root {
  --sky-50: #f5fbff;
  --sky-100: #e9f5fb;
  --sky-200: #d7edf7;
  --sky-300: #c2e3f2;
  --sky-500: #7fa8c6;
  --sky-700: #5e87a8;
  --gold: #caa86a;
  --gold-soft: #e9d7ae;
  --ink: #304458;
  --muted: #62748a;
  --white: #ffffff;
  --cream: #fffaf3;
  --shadow: 0 12px 30px rgba(86, 123, 153, 0.16);
  --shadow-soft: 0 8px 20px rgba(86, 123, 153, 0.10);
  --radius: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans', Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--sky-50) 0%, #fbfdff 24%, #ffffff 100%);
}
a { color: var(--sky-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.center { text-align: center; }
.narrow { max-width: 760px; margin: 0 auto; }

.topbar {
  background: linear-gradient(90deg, #eef8fc, #fbf6eb);
  border-bottom: 1px solid rgba(122, 169, 198, 0.18);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 0;
}
.brand-wrap { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff6d8, #d7edf7 60%, #a5cfe4 100%);
  color: #9a7a32; font-size: 24px; box-shadow: var(--shadow-soft);
}
.brand-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
.brand-sub { color: var(--muted); font-size: 0.95rem; }
.top-contact { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--muted); font-size: 0.95rem; }

.navbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(122,169,198,0.14);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0;
}
.nav-links {
  list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; flex-wrap: wrap;
}
.nav-links a { font-weight: 600; color: var(--ink); }
.lang-switcher { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-btn {
  border: 1px solid rgba(122,169,198,0.24);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}
.lang-btn.active {
  background: linear-gradient(90deg, var(--sky-200), #fff7e3);
  border-color: rgba(202,168,106,0.35);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(248,252,255,0.94) 0%, rgba(248,252,255,0.78) 40%, rgba(248,252,255,0.18) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-card {
  width: min(640px, 100%);
  padding: 34px 34px 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.66);
}
.eyebrow {
  display: inline-block; padding: 7px 12px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(194,227,242,0.65), rgba(255,247,227,0.88));
  color: var(--sky-700); font-weight: 700; font-size: 0.92rem; letter-spacing: .02em;
}
.hero h1, .section-title {
  font-family: 'Playfair Display', serif;
  color: #2f4558; line-height: 1.12;
}
.hero h1 { margin: 18px 0 14px; font-size: clamp(2.3rem, 5vw, 4rem); }
.hero p { font-size: 1.12rem; line-height: 1.8; color: var(--muted); }
.hero-buttons, .contact-actions {
  margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 999px; font-weight: 700; transition: all .18s ease;
  border: none; cursor: pointer; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(90deg, var(--sky-500), var(--gold)); color: #fff;
  box-shadow: 0 10px 24px rgba(123, 162, 191, 0.28);
}
.btn-secondary {
  background: #fff; color: var(--ink); border: 1px solid rgba(122,169,198,0.24);
}
.hero-contact-line { margin-top: 18px; color: var(--muted); font-size: 0.98rem; }

.feature-strip { margin-top: -44px; position: relative; z-index: 3; }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.feature-box {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(122,169,198,0.16);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.feature-title { font-weight: 700; color: #3a5770; margin-bottom: 7px; }
.feature-text { color: var(--muted); line-height: 1.7; }

.section { padding: 78px 0; }
.soft-bg { background: linear-gradient(180deg, #fbfeff 0%, #f4fbff 50%, #fffaf3 100%); }
.section-label {
  color: var(--sky-700); text-transform: uppercase; letter-spacing: .08em; font-size: 0.85rem; font-weight: 700; margin-bottom: 10px;
}
.section-title { font-size: clamp(2rem, 3vw, 3rem); margin: 0 0 16px; }
.section-text { color: var(--muted); line-height: 1.9; font-size: 1.03rem; }
.two-col {
  display: grid; grid-template-columns: 1.2fr .9fr; gap: 30px; align-items: start;
}
.info-card, .service-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(122,169,198,0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.info-card { padding: 26px; }
.info-card h3 { margin-top: 0; font-family: 'Playfair Display', serif; font-size: 1.45rem; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 14px 0; vertical-align: top; border-bottom: 1px solid rgba(122,169,198,0.16); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th { width: 110px; color: #547592; }

.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 26px;
}
.service-card { padding: 26px 22px; }
.icon-circle {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sky-200), #fff4d6); color: #8a6b2e; font-size: 24px; margin-bottom: 14px;
}
.service-card h3 { margin: 0 0 10px; font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.8; }
.subheading {
  margin: 42px 0 18px; font-size: 1.4rem; font-family: 'Playfair Display', serif;
}
.price-table-wrap { margin-top: 10px; }
.price-table {
  width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.92);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(122,169,198,0.16);
}
.price-table th, .price-table td { padding: 16px 18px; text-align: left; }
.price-table thead th {
  background: linear-gradient(90deg, var(--sky-200), #fff4d6); color: #3f5c74;
}
.price-table tbody tr:nth-child(even) { background: rgba(240,248,252,0.54); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px;
}
.gallery-card {
  margin: 0; background: rgba(255,255,255,0.92); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(122,169,198,0.16);
}
.gallery-card.large { grid-column: span 2; }
.gallery-card img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.gallery-card figcaption { padding: 16px 18px; color: var(--muted); }

.contact-list {
  display: grid; gap: 10px; margin: 22px 0 10px; color: var(--ink);
}
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 14px; border-radius: 14px; border: 1px solid rgba(122,169,198,0.22);
  background: #fff; font: inherit; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(127,168,198,0.22); }

.footer {
  background: linear-gradient(90deg, #edf8fd, #fff8ee);
  border-top: 1px solid rgba(122,169,198,0.15);
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 16px; padding: 22px 0; color: var(--muted); flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .two-col, .cards-4, .gallery-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card.large { grid-column: span 2; }
}
@media (max-width: 760px) {
  .topbar-inner, .nav-inner { flex-direction: column; align-items: flex-start; }
  .two-col, .cards-4, .gallery-grid, .feature-grid { grid-template-columns: 1fr; }
  .gallery-card.large { grid-column: span 1; }
  .hero { min-height: 620px; }
  .hero-card { padding: 24px; }
  .hero-buttons, .contact-actions { flex-direction: column; align-items: stretch; }
  .top-contact { gap: 6px 10px; }
}
