:root {
  --navy: #1c2430;
  --navy-soft: #2a3342;
  --rose: #c4a07a;
  --bg: #fff;
  --paper: #f6f4f1;
  --ink: #1c2430;
  --muted: #6b635b;
  --line: #e8e2da;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "DM Sans", system-ui, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
.wrap { width: min(1140px, calc(100% - 32px)); margin-inline: auto; }
h1, h2, .logo { font-family: "Playfair Display", serif; }

.topbar { background: var(--navy); color: #e8e2da; font-size: 13px; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 44px; gap: 12px; }
.topbar span { opacity: .9; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: #000; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #eee; }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.topbar .btn { padding: 8px 16px; font-size: 11px; background: #fff; color: var(--navy); }

header { background: #fff; position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.logo { font-size: 26px; font-weight: 700; }
.menu { display: flex; gap: 24px; list-style: none; font-size: 14px; color: var(--muted); }
.menu a:hover { color: var(--navy); }

.hero { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 72vh; }
.hero-copy { display: grid; align-content: center; justify-items: end; padding: 72px 40px; }
.hero-copy .inner { width: min(520px, 100%); }
.eyebrow { color: var(--rose); letter-spacing: .2em; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.hero h1 { font-size: clamp(36px, 5.2vw, 58px); line-height: 1.08; margin: 12px 0 16px; font-weight: 600; }
.hero p { color: var(--muted); max-width: 42ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo { min-height: 420px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.banner { background: var(--navy); color: #fff; text-align: center; padding: 64px 0; }
.banner h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; color: #fff; }
.banner p { color: #c9c3bb; margin-bottom: 24px; }

.section { padding: 80px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 36px; }
.section-head p { color: var(--muted); max-width: 40ch; }
h2 { font-size: clamp(28px, 3.4vw, 40px); }

.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 14px; }
.team h3 { font-size: 20px; font-family: "Playfair Display", serif; }
.team p { font-size: 14px; color: var(--muted); margin: 6px 0 12px; }
.mini-soc { display: flex; gap: 8px; }
.mini-soc a { width: 28px; height: 28px; display: grid; place-items: center; color: var(--navy); }
.mini-soc svg { width: 14px; height: 14px; fill: currentColor; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 12px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery img:nth-child(4) { grid-column: span 2; }
.center-cta { text-align: center; margin-top: 28px; }

.prices {
  position: relative;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}
.prices img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.32); }
.prices .wrap { position: relative; z-index: 1; }
.prices h2 { color: #fff; text-align: center; margin-bottom: 32px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.price-card { background: #fff; color: var(--ink); padding: 28px 26px; border-radius: 4px; }
.price-card h3 { font-family: "Playfair Display", serif; font-size: 22px; margin-bottom: 16px; }
.price-card ul { list-style: none; display: grid; gap: 10px; font-size: 15px; }
.price-card li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dotted var(--line); padding-bottom: 8px; }
.price-card b { color: var(--rose); }

.site-foot { background: var(--paper); padding: 48px 0 0; }
.news-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.news-row h2 { font-size: 28px; }
.news-row form { display: flex; gap: 8px; }
.news-row input { flex: 1; border: 1px solid var(--line); background: #fff; padding: 12px 14px; border-radius: 999px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 32px; padding: 36px 0; }
.site-foot .logo { display: inline-block; margin-bottom: 10px; }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 34ch; }
.site-foot h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.site-foot ul { list-style: none; display: grid; gap: 8px; font-size: 14px; color: var(--muted); }
.site-foot ul a:hover { color: var(--navy); }
.foot-copy { border-top: 1px solid var(--line); padding: 14px 0; font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.soc { display: flex; gap: 10px; }
.soc a { width: 32px; height: 32px; display: grid; place-items: center; }
.soc svg { width: 15px; height: 15px; fill: currentColor; }

.float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  z-index: 40;
}

@media (max-width: 860px) {
  .menu { display: none; }
  .hero, .section-head, .team, .gallery, .price-grid, .news-row, .foot-grid { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 180px; }
  .gallery img:nth-child(1), .gallery img:nth-child(4) { grid-column: auto; grid-row: auto; }
  .hero-copy { padding: 48px 20px 32px; justify-items: start; }
  .hero-photo { min-height: 280px; }
}
