:root {
  /* Cream not hospital-white (mourning) or flag-white.
     Coral CTA not India saffron (#FF9933 / kesari).
     Blue-teal not India green (#138808). */
  --bg: #fff6ea;
  --bg-2: #ffffff;
  --band: #ffe3c2;
  --gold: #f15a24;
  --gold-2: #d64516;
  --teal: #0e6b73;
  --teal-2: #16808a;
  --ink: #1c2430;
  --muted: #4d5a68;
  --line: rgba(14, 107, 115, 0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Outfit, system-ui, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}
.btn:focus-visible { outline-offset: 4px; }
.skip {
  position: absolute;
  left: 12px; top: -48px;
  background: var(--gold);
  color: #1a1406;
  padding: 8px 14px;
  z-index: 80;
  border-radius: 4px;
  font-weight: 600;
}
.skip:focus, .skip:focus-visible { top: 12px; }
img { max-width: 100%; display: block; }
.wrap { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 246, 234, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; position: relative; }
.brand { font-family: "Cormorant Garamond", serif; font-size: 22px; letter-spacing: .1em; white-space: nowrap; }
.brand span { color: var(--teal); }
.nav-links { display: flex; gap: 16px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.nav-links a { min-height: 32px; display: inline-flex; align-items: center; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-end { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--teal);
  border-radius: 8px;
  cursor: pointer;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #d64516;
  background: linear-gradient(180deg, #ff7a3a, #f15a24);
  color: #fff; font-weight: 600;
  padding: 11px 18px; border-radius: 999px; cursor: pointer; font: inherit;
}
.btn.ghost { background: rgba(255,255,255,.88); color: var(--teal); border-color: #fff; }
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(72vh, 620px);
  display: grid; align-items: center;
  color: #fff8ee;
  padding: 56px 0 40px;
  overflow: hidden;
}
.hero-media, .hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10,28,70,.38) 0%, rgba(10,28,70,.10) 48%, rgba(10,28,70,0) 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fffdf8; }
.hero .muted { color: #fff4e4; }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; line-height: 1.12; }
h1 { font-size: clamp(40px, 6vw, 72px); max-width: 16ch; }
h2 { font-size: clamp(30px, 4vw, 48px); }
.kicker { color: var(--teal); letter-spacing: .2em; font-size: 12px; text-transform: uppercase; }
.hero .kicker { color: #ffe0b0; }
.muted { color: var(--muted); }
section { padding: 72px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.card { border: 1px solid var(--line); background: var(--bg-2); padding: 22px; }
.card h3 { color: var(--teal); font-size: 26px; margin-bottom: 8px; }
.band { background: var(--band) !important; }
.card p, .card li { color: var(--muted); font-size: 14px; }
.card ul { margin-left: 16px; }
.photo { width: 100%; height: 320px; object-fit: cover; border: 1px solid var(--line); }
.photo.tall { height: 420px; }
.stat { text-align: center; border: 1px solid var(--line); padding: 22px 10px; }
.stat { background: #fff; }
.stat b { display: block; font-family: "Cormorant Garamond", serif; font-size: 36px; color: var(--teal); }
form { display: grid; gap: 12px; border: 1px solid var(--line); background: #fff; padding: 24px; }
label { font-size: 13px; color: var(--muted); }
input, select, textarea {
  width: 100%; background: #fff8ef; border: 1px solid rgba(11,110,107,.28);
  color: var(--ink); padding: 12px 14px; font: inherit;
}
textarea { min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
footer { border-top: 1px solid var(--line); padding: 36px 0 28px; color: var(--muted); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 20px; }
.float-cta { position: fixed; right: 14px; bottom: 14px; z-index: 50; display: flex; flex-direction: column; gap: 8px; }
.float-cta a { background: #0e6b73; border: 1px solid #0e6b73; color: #fff; padding: 10px 14px; border-radius: 999px; font-size: 13px; }
.page-hero { padding: 70px 0 36px; background: linear-gradient(180deg, #ffd7a0, var(--bg)); }
.list-plain { list-style: none; }
.list-plain li { padding: 8px 0; border-bottom: 1px solid rgba(11,110,107,.12); color: var(--muted); }
.work-card { position: relative; overflow: hidden; border: 1px solid var(--line); min-height: 240px; }
.work-card img { width: 100%; height: 240px; object-fit: cover; }
.work-card span { position: absolute; left: 14px; bottom: 12px; background: rgba(0,0,0,.65); padding: 6px 10px; font-size: 13px; }
.catalog { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.catalog article { border: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.catalog img { width: 100%; aspect-ratio: 16 / 10; height: auto; object-fit: cover; }
.catalog .pad { padding: 16px 18px 20px; }
.catalog h3 { color: var(--teal); font-size: 22px; margin-bottom: 6px; }
.catalog p { color: var(--muted); font-size: 14px; }
.work-card img { width: 100%; aspect-ratio: 16 / 10; height: auto; object-fit: cover; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.faq details {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 14px 18px;
  margin: 0 0 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--teal);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--muted); margin-top: 10px; }
body { padding-bottom: 24px; }
.float-cta {
  right: max(14px, env(safe-area-inset-right));
  bottom: calc(14px + env(safe-area-inset-bottom));
}

@media (max-width: 1100px) {
  .nav-links { gap: 12px; font-size: 12px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff6ea;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; min-height: 44px; border-bottom: 1px solid rgba(11,110,107,.12); }
  header { position: sticky; }
  .grid-2, .grid-3, .form-row, .footer-grid { grid-template-columns: 1fr; }
  section { padding: clamp(40px, 8vw, 56px) 0; }
  .hero { min-height: unset; padding: 72px 0 40px; }
  .page-hero { padding: 48px 0 24px; }
  .photo.tall { height: 260px; }
  body { padding-bottom: 96px; }
  form .btn, .hero-actions .btn { width: 100%; }
  .btn { min-height: 44px; }
}

@media (max-width: 480px) {
  .brand { font-size: 18px; letter-spacing: .08em; }
  .wrap { width: min(1160px, calc(100% - 24px)); }
  h1 { max-width: none; }
}
