:root {
  color-scheme: light;
  --ink: #10211d;
  --muted: #60706c;
  --deep: #09231f;
  --teal: #0f7d78;
  --mint: #dff3ee;
  --paper: #f7f4ed;
  --white: #ffffff;
  --line: #d5ded9;
  --amber: #c78b42;
  --coral: #d56555;
  --shadow: 0 18px 50px rgba(9, 35, 31, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(110px, auto);
  align-items: center;
  gap: 22px;
  padding: 13px 34px;
  color: var(--white);
  background: rgba(9, 35, 31, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand,
.header-actions,
nav,
.hero-actions,
.proof-row,
.quick-strip,
.panel-actions,
.thumb-row,
.mobile-bar {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-weight: 800;
  color: var(--deep);
  background: var(--mint);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

nav {
  justify-content: center;
  gap: 6px;
}

nav a,
.lang-toggle,
.header-call {
  min-height: 38px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .82);
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
}

nav a:hover,
.lang-toggle:hover,
.header-call:hover {
  border-color: rgba(255, 255, 255, .24);
  color: var(--white);
}

.header-actions {
  justify-content: flex-end;
  gap: 8px;
}

.lang-toggle,
.header-call {
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: 36px;
  align-items: stretch;
  min-height: 670px;
  padding: 78px 42px 44px;
  background:
    linear-gradient(105deg, rgba(9, 35, 31, .96), rgba(9, 35, 31, .82) 53%, rgba(223, 243, 238, .46) 53%),
    var(--deep);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 74px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 24px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .09);
}

.ghost {
  color: var(--deep);
  background: var(--white);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-row span {
  min-width: 130px;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.proof-row strong,
.proof-row small {
  display: block;
}

.proof-row strong {
  font-size: 24px;
}

.proof-row small {
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
}

.hero-media {
  position: relative;
  min-height: 540px;
  align-self: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--mint);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px;
  color: var(--white);
  background: rgba(9, 35, 31, .82);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
}

.media-note strong,
.media-note span {
  display: block;
}

.media-note span {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.quick-strip {
  position: relative;
  z-index: 2;
  gap: 12px;
  max-width: 1180px;
  margin: -28px auto 0;
  padding: 0 22px;
}

.quick-strip a {
  flex: 1;
  min-width: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-strip span,
.service span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 10px;
  color: var(--white);
  background: var(--coral);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.quick-strip strong,
.quick-strip small {
  display: block;
}

.quick-strip strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-strip small {
  color: var(--muted);
  font-size: 13px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 22px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.plan-grid,
.gallery-proof,
.first,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, .76fr) minmax(0, 1.24fr);
  gap: 18px;
  align-items: stretch;
}

.reason-list {
  display: grid;
  gap: 10px;
}

.reason,
.reason-panel,
.service,
.contact-card,
.request-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.reason {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.reason span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--deep);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

.reason strong,
.reason small {
  display: block;
}

.reason small {
  color: var(--muted);
}

.reason.active {
  color: var(--white);
  background: var(--deep);
  border-color: var(--deep);
}

.reason.active span {
  color: var(--white);
  background: var(--teal);
}

.reason.active small {
  color: rgba(255, 255, 255, .68);
}

.reason-panel {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(223, 243, 238, .78), rgba(255, 255, 255, .92)),
    var(--white);
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-weight: 900;
}

.reason-panel p {
  color: var(--muted);
}

.panel-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, .72);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
}

.panel-actions {
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-proof {
  align-items: center;
}

.proof-copy {
  padding: 24px 0;
}

.proof-copy p:not(.eyebrow) {
  color: var(--muted);
}

.focus-gallery {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.focus-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.thumb-row {
  gap: 8px;
  margin-top: 10px;
}

.thumb {
  flex: 1;
  min-width: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
}

.thumb.active {
  border-color: var(--teal);
}

.thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service {
  min-height: 210px;
  padding: 20px;
}

.service:nth-child(3n) span {
  background: var(--teal);
}

.service:nth-child(4n) span {
  background: var(--amber);
}

.service h3 {
  font-size: 21px;
}

.service p {
  color: var(--muted);
}

.first {
  align-items: center;
  padding-bottom: 34px;
}

.first img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.first > div {
  padding: 34px;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
}

.first p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
}

.hours {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  color: var(--deep);
  background: var(--mint);
  border-radius: 8px;
}

.hours span {
  color: #31524b;
}

.hours small {
  margin-top: 6px;
  color: #526a64;
  font-size: 12px;
  line-height: 1.45;
}

.contact {
  padding-bottom: 90px;
}

.contact-card,
.request-card {
  padding: 26px;
}

dl {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

dd {
  margin: 3px 0 0;
  font-weight: 750;
}

.request-card {
  display: grid;
  gap: 14px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.request-card small {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 28px 34px 92px;
  color: rgba(255, 255, 255, .74);
  background: var(--deep);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  gap: 8px;
  padding: 8px;
  background: rgba(9, 35, 31, .93);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-bar a {
  flex: 1;
  padding: 12px 8px;
  color: var(--white);
  text-align: center;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 11px 16px;
  }

  nav {
    display: none;
  }

  .hero,
  .plan-grid,
  .gallery-proof,
  .first,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 54px 18px 34px;
    background: var(--deep);
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-media {
    min-height: 420px;
  }

  .quick-strip,
  .proof-row {
    align-items: stretch;
  }

  .quick-strip {
    display: grid;
    margin-top: 0;
    padding-top: 16px;
  }

  .quick-strip a {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions,
  .panel-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 330px;
  }

  .media-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-row span {
    min-width: 0;
    padding: 11px;
  }

  .proof-row strong {
    font-size: 20px;
  }

  .section {
    padding-top: 62px;
  }

  .reason-panel,
  .contact-card,
  .request-card,
  .first > div {
    padding: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: 0;
  }

  .thumb-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .first img {
    min-height: 300px;
  }

  .site-footer {
    display: grid;
    padding: 26px 18px 94px;
  }

  .mobile-bar {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .18s ease, transform .18s ease;
  }

  body.show-mobile-bar .mobile-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
