/* Green Medi premium landscape theme */
:root {
  --premium-forest: #173f2c;
  --premium-deep: #0c281c;
  --premium-lime: #b9d66b;
  --premium-sage: #dce5d8;
  --premium-sand: #f1eee6;
  --premium-cream: #faf9f5;
  --premium-ink: #172019;
  --premium-muted: #657068;
  --premium-line: #d7ddd5;
  --premium-display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --premium-body: "Source Sans 3", "Segoe UI", sans-serif;
  --premium-width: 1240px;
}

body {
  background: var(--premium-cream);
  color: var(--premium-ink);
  font-family: var(--premium-body);
  font-size: 16px;
  line-height: 1.55;
}

.container {
  width: min(calc(100% - 64px), var(--premium-width));
}

.container.container--wide {
  width: min(calc(100% - 48px), 1500px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--premium-ink);
  background: var(--premium-sand);
  border: 0;
  box-shadow: 0 1px 0 var(--premium-line), 0 12px 24px -18px rgba(15, 26, 18, 0.25);
  transition: box-shadow 260ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--premium-line), 0 18px 32px -16px rgba(15, 26, 18, 0.32);
}

.header-inner {
  min-height: 100px;
  border-bottom: 0;
  transition: min-height 260ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 72px;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 380px;
  height: 88px;
  object-fit: contain;
  object-position: left center;
  transition: height 260ms ease;
}

.site-header.is-scrolled .brand-logo {
  height: 60px;
}

.brand-word,
.site-nav a,
.header-phone {
  color: var(--premium-ink);
}

.brand-word {
  font-size: 1.6rem;
  letter-spacing: -0.045em;
}

.brand-sub {
  color: var(--premium-muted);
}

.site-nav a {
  font-size: 0.91rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--premium-forest);
}

.header-actions .btn-solid {
  color: #fff;
  background: var(--premium-forest);
}

.header-actions .btn-solid:hover {
  background: var(--premium-deep);
  color: #fff;
}

.premium-section {
  padding: 112px 0;
}

.section-number,
.overline {
  margin: 0 0 24px;
  color: var(--premium-forest);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.premium-heading h2,
.premium-intro h2,
.premium-expertise h2,
.premium-reviews h2,
.premium-area h2,
.premium-contact h2 {
  margin: 0;
  font-family: var(--premium-display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.premium-heading > p {
  margin: 0;
  color: var(--premium-muted);
  font-size: 1.05rem;
}

.premium-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 6px;
  color: var(--premium-forest);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  text-decoration: none;
}

.premium-link span {
  transition: transform 180ms ease;
}

.premium-link:hover span {
  transform: translate(3px, -3px);
}

/* Hero */
.premium-hero {
  position: relative;
  overflow: hidden;
  color: var(--premium-ink);
  background: linear-gradient(180deg, var(--premium-sand) 0%, var(--premium-cream) 100%);
}

.premium-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0 88px;
}

.premium-hero__copy {
  max-width: 620px;
}

.premium-hero .overline {
  color: var(--premium-forest);
}

.premium-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--premium-deep);
  font-family: var(--premium-display);
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.premium-hero__lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--premium-muted);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
}

.premium-hero .premium-actions {
  margin-top: 32px;
}

.premium-hero .premium-button--light {
  color: #fff;
  background: var(--premium-forest);
}

.premium-hero .premium-button--light:hover {
  background: var(--premium-deep);
}

.premium-hero .premium-button--ghost {
  color: var(--premium-deep);
  border-color: rgba(23, 32, 25, 0.28);
}

.premium-hero .premium-button--ghost:hover {
  color: var(--premium-deep);
  border-color: var(--premium-deep);
  background: rgba(23, 32, 25, 0.06);
}

.premium-button {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.premium-button--light {
  color: var(--premium-deep);
  background: #fff;
}

.premium-button--light:hover {
  color: var(--premium-deep);
  background: var(--premium-lime);
}

.premium-button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.premium-button--ghost:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.premium-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(600px, 100%);
  margin-top: 48px;
  border-top: 1px solid var(--premium-line);
}

.premium-hero__facts > * {
  display: flex;
  flex-direction: column;
  min-height: 100px;
  padding: 18px 22px 0 0;
  color: var(--premium-ink);
  border-right: 1px solid var(--premium-line);
  text-decoration: none;
}

.premium-hero__facts > * + * {
  padding-left: 22px;
}

.premium-hero__facts > *:last-child {
  border-right: 0;
}

.premium-hero__facts span,
.premium-hero__facts small {
  color: var(--premium-muted);
  font-size: 0.78rem;
}

.premium-hero__facts strong {
  margin-top: 6px;
  font-family: var(--premium-display);
  font-size: 1.1rem;
  color: var(--premium-deep);
}

.premium-hero__facts .stars {
  margin-top: 4px;
  color: var(--premium-forest);
  font-size: 0.75rem;
}

/* Hero visual card (image / swipeable slider) */
.premium-hero__visual {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 40px 70px -32px rgba(15, 26, 18, 0.4);
}

.premium-hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.premium-hero__track {
  display: flex;
  height: 100%;
  cursor: grab;
  touch-action: pan-y;
  will-change: transform;
}

.premium-hero__visual.is-dragging .premium-hero__track {
  cursor: grabbing;
}

.premium-hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 74% 35%, rgba(185, 214, 107, 0.28), transparent 22%),
    linear-gradient(122deg, #173f2c 0%, #25563a 52%, #66804e 100%);
  background-position: center;
  background-size: cover;
}

.premium-hero__controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.premium-hero__arrow {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  cursor: pointer;
  background: rgba(15, 26, 18, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease;
}

.premium-hero__arrow:hover {
  background: rgba(15, 26, 18, 0.55);
  border-color: #fff;
}

.premium-hero__arrow svg {
  width: 16px;
  height: 16px;
}

.premium-hero__dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.premium-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, width 180ms ease;
}

.premium-hero__dot.is-active {
  width: 22px;
  background: var(--premium-lime);
  border-color: var(--premium-lime);
}

/* Intro */
.premium-intro__grid {
  display: grid;
  grid-template-columns: 0.35fr 1.2fr 0.55fr;
  gap: 64px;
  align-items: start;
}

.premium-intro h2 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
}

.premium-intro h2 + p {
  max-width: 700px;
  margin: 30px 0 28px;
  color: var(--premium-muted);
  font-size: 1.12rem;
}

.premium-intro__promise {
  padding-top: 22px;
  border-top: 1px solid var(--premium-forest);
}

.premium-intro__promise .overline {
  margin-bottom: 14px;
}

.premium-intro__promise p {
  margin: 0;
  color: var(--premium-muted);
}

/* Services */
.premium-services {
  position: relative;
  background: var(--premium-sand);
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.premium-service {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  color: var(--premium-ink);
  background: #fff;
  text-decoration: none;
}

.premium-service:nth-child(1),
.premium-service:nth-child(6) {
  grid-column: span 8;
}

.premium-service:nth-child(1) .premium-service__visual,
.premium-service:nth-child(6) .premium-service__visual {
  aspect-ratio: 16 / 7;
}

.premium-service__number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: rgba(9, 36, 23, 0.8);
  font-size: 0.74rem;
  backdrop-filter: blur(8px);
}

.premium-service__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(185, 214, 107, 0.35), transparent 60%),
    var(--premium-forest);
}

.premium-service__visual::after {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.18) 0 8%, transparent 9%),
    radial-gradient(circle at 60% 70%, rgba(185, 214, 107, 0.2) 0 22%, transparent 23%),
    linear-gradient(25deg, transparent 42%, rgba(255, 255, 255, 0.08) 43% 44%, transparent 45%);
  content: "";
  transition: transform 500ms ease;
}

.premium-service__icon {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #d8eb9b;
}

.premium-service__icon::before {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.premium-service__icon .service-icon-svg {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  filter: drop-shadow(0 10px 24px rgba(3, 20, 11, 0.25));
}

.premium-service__visual--2 { background-color: #496748; }
.premium-service__visual--3 { background-color: #65715a; }
.premium-service__visual--4 { background-color: #355c3d; }
.premium-service__visual--5 { background-color: #736b51; }
.premium-service__visual--6 { background-color: #2d5239; }

.premium-service__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.premium-service__body {
  position: relative;
  min-height: 190px;
  padding: 30px;
}

.premium-service__body h3 {
  margin: 0;
  font-family: var(--premium-display);
  font-size: 1.65rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.premium-service__body p {
  max-width: 90%;
  margin: 14px 0 0;
  color: var(--premium-muted);
}

.premium-service__arrow {
  position: absolute;
  right: 28px;
  bottom: 26px;
  color: var(--premium-forest);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.premium-service:hover {
  color: var(--premium-ink);
}

.premium-service:hover .premium-service__visual::after,
.premium-service:hover .premium-service__visual img {
  transform: scale(1.04);
}

.premium-service:hover .premium-service__arrow {
  transform: translate(3px, -3px);
}

/* Projects */
.premium-projects {
  color: #fff;
  background: var(--premium-deep);
}

.premium-heading--light .section-number,
.premium-heading--light > p {
  color: rgba(255, 255, 255, 0.6);
}

.premium-project-list {
  display: grid;
  gap: 64px;
}

.premium-project {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr);
  gap: 42px;
  align-items: end;
}

.premium-project:nth-child(even) {
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1.55fr);
}

.premium-project:nth-child(even) .premium-project__media {
  grid-column: 2;
}

.premium-project:nth-child(even) .premium-project__caption {
  grid-row: 1;
  grid-column: 1;
}

.premium-project__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #345441;
}

.premium-project__after,
.premium-project__before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
}

.premium-project__after {
  background:
    radial-gradient(circle at 66% 42%, rgba(185, 214, 107, 0.32), transparent 20%),
    linear-gradient(145deg, #40664b, #183d2a);
}

.premium-project__before {
  width: var(--pos, 50%);
  overflow: hidden;
  border-right: 2px solid #fff;
  background:
    radial-gradient(circle at 35% 65%, rgba(143, 132, 91, 0.3), transparent 20%),
    linear-gradient(145deg, #5f6659, #2d372f);
}

.premium-project__after span,
.premium-project__before span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 10px;
  color: #fff;
  background: rgba(7, 25, 16, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-project__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(7, 25, 16, 0.76);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.premium-project__handle i {
  font-style: normal;
}

.premium-project__media .ba-range {
  z-index: 4;
}

.premium-project__caption {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.premium-project__caption > span {
  color: var(--premium-lime);
  font-size: 0.75rem;
}

.premium-project__caption h3 {
  margin: 0;
  font-family: var(--premium-display);
  font-size: 1.9rem;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.premium-project__caption p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.premium-link--light {
  margin-top: 48px;
  color: #fff;
}

/* Expertise */
.premium-expertise {
  background: var(--premium-lime);
}

.premium-expertise .section-number {
  color: var(--premium-deep);
}

.premium-expertise__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.premium-expertise__heading h2 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.premium-expertise__steps {
  border-top: 1px solid rgba(12, 40, 28, 0.45);
}

.premium-expertise__steps article {
  display: grid;
  grid-template-columns: 42px 0.7fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(12, 40, 28, 0.3);
}

.premium-expertise__steps span {
  font-size: 0.76rem;
}

.premium-expertise__steps h3 {
  margin: 0;
  font-family: var(--premium-display);
  font-size: 1.35rem;
  font-weight: 650;
}

.premium-expertise__steps p {
  margin: 0;
  color: rgba(12, 40, 28, 0.7);
}

/* Catalog */
.premium-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.premium-catalog__grid article {
  padding-top: 22px;
  border-top: 2px solid var(--premium-forest);
}

.premium-catalog__grid h3 {
  min-height: 58px;
  margin: 0 0 22px;
  font-family: var(--premium-display);
  font-size: 1.35rem;
  font-weight: 650;
}

.premium-catalog__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-catalog__grid li {
  padding: 9px 0;
  color: var(--premium-muted);
  border-bottom: 1px solid var(--premium-line);
}

/* Reviews */
.premium-reviews--diagonal {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 96px 0 96px;
  color: #fff;
  /* Same tone as the section that follows (.premium-contact), so the strip
     the diagonal cut exposes reads as a deliberate colour shift into the
     next section rather than a stray gap of the page's paper background. */
  background: var(--premium-forest);
}

.premium-reviews--diagonal::before {
  position: absolute;
  inset: -1px -1px 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, #1c6b93 0%, #227d6e 48%, #3aab6f 100%);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.premium-reviews__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 56px;
}

.premium-reviews__header h2 {
  margin: 14px 0 10px;
  font-family: var(--premium-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.premium-reviews__header p {
  max-width: 32ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.premium-reviews__badge {
  display: inline-block;
  padding: 7px 16px;
  color: var(--premium-deep);
  background: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.premium-reviews__badge--dark {
  color: #fff;
  background: rgba(4, 20, 14, 0.55);
  letter-spacing: 0.02em;
  text-transform: none;
}

.premium-reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.premium-reviews__rating-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}

.premium-reviews__rating .star {
  color: #f2a93c;
  font-size: 1.1rem;
}

.premium-reviews__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 24px;
}

.premium-reviews__card {
  flex: 1 1 240px;
  max-width: 320px;
  margin: 0;
  padding: 30px 26px;
  color: var(--premium-ink);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 40px -24px rgba(4, 20, 14, 0.45);
}

.premium-reviews__card--1 { margin-bottom: -10px; }
.premium-reviews__card--2 { padding-bottom: 46px; }
.premium-reviews__card--3 { margin-bottom: 30px; }
.premium-reviews__card--4 { margin-bottom: 10px; }

.premium-reviews__stars {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--premium-sand);
  border-radius: 999px;
}

.premium-reviews__stars .star {
  color: #f2a93c;
  font-size: 0.85rem;
}

.premium-reviews__card p {
  margin: 0;
  color: var(--premium-ink);
  font-size: 1rem;
  line-height: 1.5;
}

.premium-reviews__card footer {
  margin-top: 18px;
}

.premium-reviews__card footer strong {
  font-family: var(--premium-display);
  font-weight: 700;
}

.premium-section-link--reviews {
  margin-top: 8px;
}

/* Area + contact */
.premium-area__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: end;
}

.premium-area h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.premium-area ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--premium-line);
}

.premium-area li {
  padding: 15px 0;
  border-bottom: 1px solid var(--premium-line);
  font-weight: 650;
}

.premium-contact {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: #fff;
  background: var(--premium-forest);
}

.premium-contact__texture {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background:
    radial-gradient(circle at 76% 34%, rgba(185, 214, 107, 0.35), transparent 18%),
    radial-gradient(circle at 82% 82%, rgba(185, 214, 107, 0.16), transparent 24%);
}

.premium-contact__inner {
  position: relative;
  z-index: 1;
}

.premium-contact .overline {
  color: var(--premium-lime);
}

.premium-contact h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.premium-contact h2 + p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.15rem;
}

.premium-contact__phone {
  color: #fff;
  font-family: var(--premium-display);
  font-size: 1.3rem;
  font-weight: 650;
  text-decoration: none;
}

.premium-service-grid--home .premium-service__body {
  min-height: 112px;
}

.premium-service-grid--home .premium-service__body p {
  display: none;
}

.premium-section-link {
  margin: 42px 0 0;
}

.premium-home-about {
  position: relative;
  padding: 112px 0;
  color: #fff;
  background: var(--premium-forest);
}

.premium-home-about__layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 110px;
  align-items: end;
}

.premium-home-about .section-number {
  color: var(--premium-lime);
}

.premium-home-about h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--premium-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
}

.premium-home-about__layout > div:last-child > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.premium-home-about__image {
  height: clamp(300px, 44vw, 570px);
  margin-top: 68px;
  overflow: hidden;
}

.premium-home-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-home-about__skills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 82px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.premium-home-about__skills h3 {
  margin: 0;
  font-family: var(--premium-display);
  font-size: 1.25rem;
  font-weight: 650;
}

.premium-skill__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(185, 214, 107, 0.32);
  color: var(--premium-lime);
}

.premium-skill__icon .service-icon-svg {
  width: 29px;
  height: 29px;
}

.premium-home-about__skills p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.premium-project-list--home .premium-project {
  display: block;
}

.premium-project--featured .premium-project__media {
  aspect-ratio: 16 / 7;
}

.premium-contact--home {
  padding-block: 110px;
}

/* Subpage heroes */
.subpage-hero {
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 35%, rgba(185, 214, 107, 0.23), transparent 20%),
    linear-gradient(125deg, #123522, #315c3e);
}

.subpage-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
}

.subpage-hero.has-photo {
  background-position: center;
  background-size: cover;
}

.subpage-hero.has-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 23, 14, 0.88) 0%, rgba(4, 23, 14, 0.55) 55%, rgba(4, 23, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 23, 14, 0.52), transparent 60%);
  content: "";
}

.subpage-hero.has-photo .subpage-hero__inner {
  z-index: 2;
}

.subpage-hero--services {
  background:
    radial-gradient(circle at 72% 36%, rgba(185, 214, 107, 0.2), transparent 18%),
    linear-gradient(120deg, #112e20, #486443);
}

.subpage-hero--projects {
  background:
    radial-gradient(circle at 74% 38%, rgba(180, 154, 106, 0.24), transparent 18%),
    linear-gradient(120deg, #1e3326, #5a684e);
}

.subpage-hero--reviews {
  background:
    radial-gradient(circle at 75% 38%, rgba(185, 214, 107, 0.18), transparent 18%),
    linear-gradient(120deg, #173827, #354d3b);
}

.subpage-hero--contact {
  background:
    radial-gradient(circle at 75% 38%, rgba(185, 214, 107, 0.2), transparent 18%),
    linear-gradient(120deg, #0f3020, #3e6848);
}

.subpage-hero--quote {
  background:
    radial-gradient(circle at 78% 30%, rgba(185, 214, 107, 0.26), transparent 20%),
    linear-gradient(125deg, #0c281c, #1c6b52 55%, #2f8a63);
}

.quote-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.quote-trust-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}

.quote-trust-badges svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--premium-lime);
}

.subpage-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 48px 48px;
}

.subpage-hero .overline {
  color: var(--premium-lime);
}

.subpage-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--premium-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.subpage-hero h1 + p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
}

.subpage-lead {
  padding: 72px 0;
  border-bottom: 1px solid var(--premium-line);
}

.subpage-lead__layout,
.subpage-story__layout,
.service-detail__layout {
  display: grid;
  grid-template-columns: 0.45fr 1.25fr;
  gap: 80px;
}

.service-faq__layout {
  max-width: 860px;
  margin: 0 auto;
}

.service-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-faq__item {
  padding: 6px 24px;
  border: 1px solid var(--premium-line);
  border-radius: 16px;
  background: #fff;
}

.service-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--premium-ink);
  cursor: pointer;
  font-family: var(--premium-display);
  font-size: 1.05rem;
  list-style: none;
}

.service-faq__item summary::-webkit-details-marker {
  display: none;
}

.service-faq__icon {
  flex-shrink: 0;
  color: var(--premium-forest);
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 200ms ease;
}

.service-faq__item[open] .service-faq__icon {
  transform: rotate(45deg);
}

.service-faq__answer {
  padding: 0 0 22px;
  color: var(--premium-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.subpage-lead__layout > div,
.subpage-story__content,
.service-detail__content {
  max-width: 780px;
  color: var(--premium-muted);
  font-size: 1.18rem;
}

.subpage-lead__layout p,
.subpage-story__content p,
.service-detail__content p {
  margin-top: 0;
}

.subpage-story__content p:first-child {
  color: var(--premium-ink);
  font-family: var(--premium-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.page-content-visuals {
  padding: 0 0 96px;
}

.page-content-visuals__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.page-content-visuals figure,
.page-image-gallery figure {
  margin: 0;
  overflow: hidden;
}

.page-content-visuals figure.is-primary {
  grid-column: 1 / -1;
}

.page-content-visuals img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-content-visuals .is-primary img {
  aspect-ratio: 16 / 7;
}

.page-content-visuals figcaption,
.page-image-gallery figcaption {
  padding: 10px 0;
  color: var(--premium-muted);
  font-size: 0.82rem;
}

.page-image-gallery {
  background: var(--premium-sand);
}

.page-image-gallery__heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.page-image-gallery__heading .section-number {
  margin: 0;
}

.page-image-gallery__heading h2 {
  margin: 0;
  font-family: var(--premium-display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
}

.page-image-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-image-gallery a,
.page-image-gallery img {
  display: block;
}

.page-image-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.page-image-gallery a:hover img {
  transform: scale(1.025);
}

.subpage-regions {
  padding: 88px 0;
  color: #fff;
  background: var(--premium-deep);
}

.subpage-regions__layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.subpage-regions .section-number {
  color: var(--premium-lime);
}

.subpage-regions h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--premium-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.055em;
}

.subpage-regions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.1rem;
}

.service-inventory,
.project-gallery {
  color: #fff;
  background: var(--premium-deep);
}

.service-inventory__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
}

.service-inventory__grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.service-inventory__grid header {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 24px 0;
}

.service-inventory__grid header span {
  color: var(--premium-lime);
  font-size: 0.75rem;
}

.service-inventory__grid h3 {
  margin: 0;
  font-family: var(--premium-display);
  font-size: 1.75rem;
  font-weight: 650;
}

.service-inventory__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-inventory__grid a {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.service-inventory__grid a:hover {
  color: #fff;
}

.service-inventory__grid i {
  font-style: normal;
}

.transformation-copy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.transformation-copy article {
  padding-top: 24px;
  border-top: 2px solid var(--premium-forest);
}

.transformation-copy span {
  color: var(--premium-forest);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transformation-copy p {
  margin: 26px 0 0;
  color: var(--premium-muted);
  font-family: var(--premium-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.project-gallery__list {
  display: grid;
  gap: 64px;
}

.project-gallery__list article:nth-child(even) {
  width: 100%;
  margin-left: 0;
}

.project-work-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.project-work-media--single {
  grid-template-columns: minmax(0, 0.72fr);
}

.project-work-media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #081d13;
}

.project-work-media a {
  display: block;
}

.project-work-media img,
.project-work-media video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #06150e;
}

.project-work-media figcaption {
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.project-gallery__list footer {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 16px;
}

.project-gallery__list footer span {
  color: var(--premium-lime);
  font-size: 0.75rem;
}

.project-gallery__list footer small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.55);
}

.reviews-summary {
  padding: 42px 0;
  color: #fff;
  background: var(--premium-deep);
}

.reviews-summary__layout {
  display: flex;
  gap: 24px;
  align-items: center;
}

.reviews-summary__score {
  display: flex;
  align-items: baseline;
  font-family: var(--premium-display);
}

.reviews-summary__score strong {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.reviews-summary .stars {
  color: var(--premium-lime);
}

.reviews-summary p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.reviews-page__list {
  border-top: 1px solid var(--premium-line);
}

.reviews-page blockquote {
  display: grid;
  grid-template-columns: 60px 1fr 180px;
  gap: 32px;
  align-items: start;
  margin: 0;
  padding: 46px 0;
  border-bottom: 1px solid var(--premium-line);
}

.reviews-page__number {
  color: var(--premium-forest);
  font-size: 0.75rem;
}

.reviews-page blockquote > p {
  margin: 0;
  font-family: var(--premium-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.reviews-page footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews-page footer .stars {
  color: var(--premium-forest);
  font-size: 0.75rem;
}

.review-form-section__layout {
  max-width: 720px;
  margin: 0 auto;
}

.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  padding: 0;
  margin: 0 0 18px;
  border: 0;
}

.star-rating-input legend {
  width: 100%;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.star-rating-input input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.star-rating-input label {
  margin: 0 !important;
  color: var(--premium-line);
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  transition: color 150ms ease;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
  color: var(--premium-lime);
}

.star-rating-input input:focus-visible ~ label {
  outline: 2px solid var(--premium-forest);
  outline-offset: 2px;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 90px;
}

.contact-page__details h2,
.contact-page__form h2 {
  margin: 0;
  font-family: var(--premium-display);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.contact-page__details dl {
  margin: 46px 0 0;
}

.contact-page__details dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--premium-line);
}

.contact-page__details dt {
  color: var(--premium-muted);
}

.contact-page__details dd {
  margin: 0;
  font-weight: 600;
}

.contact-page__details a {
  color: var(--premium-forest);
}

.contact-page__form {
  padding: 46px;
  background: var(--premium-sand);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 38px;
}

.contact-form-grid label {
  display: grid;
  gap: 8px;
}

.contact-form-grid label > span {
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #aeb7ad;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
  border-color: var(--premium-forest);
}

.contact-form-grid__message {
  grid-column: 1 / -1;
}

.quote-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--premium-line);
}

.quote-how__number {
  display: block;
  margin-bottom: 12px;
  color: var(--premium-lime);
  font-family: var(--premium-display);
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--premium-forest);
  -webkit-text-fill-color: transparent;
}

.quote-how__step h3 {
  margin: 0 0 8px;
  font-family: var(--premium-display);
  font-size: 1.25rem;
}

.quote-how__step p {
  margin: 0;
  color: var(--premium-muted);
}

@media (max-width: 780px) {
  .quote-how__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 56px;
  }
}

.contact-page__quote-hint {
  padding: 12px 16px;
  margin: 14px 0 0;
  border-radius: 10px;
  background: var(--premium-sage);
  color: var(--premium-ink);
  font-size: 0.9rem;
}

.contact-page__quote-hint a {
  color: var(--premium-forest);
  font-weight: 700;
}

.contact-privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 24px 0;
  color: var(--premium-muted);
  font-size: 0.88rem;
}

/* ---------- Quote request wizard ---------- */

.quote-wizard-section__layout {
  max-width: 780px;
  margin: 0 auto;
}

.quote-wizard {
  padding: 40px;
  border: 1px solid var(--premium-line);
  border-radius: 24px;
  background: #fff;
}

.quote-wizard__progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}

.quote-wizard__progress-step {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--premium-line);
  font-family: var(--premium-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.quote-wizard__progress-step::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 50%;
  z-index: 0;
  width: 100%;
  height: 2px;
  background: var(--premium-line);
}

.quote-wizard__progress-step:first-child::before {
  display: none;
}

.quote-wizard__progress-step i {
  display: flex;
  z-index: 1;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--premium-line);
  border-radius: 50%;
  background: #fff;
  color: var(--premium-line);
  font-size: 0.95rem;
  font-style: normal;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.quote-wizard__progress-step em {
  z-index: 1;
  color: var(--premium-muted);
  font-family: var(--premium-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
}

.quote-wizard__progress-step.is-active,
.quote-wizard__progress-step.is-done {
  color: var(--premium-forest);
}

.quote-wizard__progress-step.is-active i {
  border-color: var(--premium-forest);
  color: var(--premium-forest);
}

.quote-wizard__progress-step.is-done::before {
  background: var(--premium-forest);
}

.quote-wizard__progress-step.is-done i {
  border-color: var(--premium-forest);
  background: var(--premium-forest);
  font-size: 0;
}

.quote-wizard__progress-step.is-done i::after {
  content: "✓";
  color: #fff;
  font-size: 0.95rem;
}

.quote-wizard__alert {
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.quote-wizard__alert.is-error {
  border: 1px solid #f0c6c2;
  background: #fdefee;
  color: #8a2c22;
}

.quote-wizard__alert.is-success {
  border: 1px solid #bfe3c8;
  background: #eaf7ee;
  color: #1f4d2e;
}

.quote-wizard__step {
  display: none;
  padding: 0;
  margin: 0;
  border: 0;
}

.quote-wizard__step.is-active {
  display: block;
}

.quote-wizard__step legend {
  margin: 0 0 20px;
  padding: 0;
  font-family: var(--premium-display);
  font-size: 1.3rem;
}

.quote-wizard__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.quote-wizard__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--premium-line);
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.quote-wizard__card:hover {
  transform: translateY(-2px);
}

.quote-wizard__card input {
  position: absolute;
  opacity: 0;
}

.quote-wizard__card-icon {
  display: flex;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--premium-cream);
  color: var(--premium-forest);
  transition: background 150ms ease, color 150ms ease;
}

.quote-wizard__card-icon svg,
.quote-wizard__card-icon .service-icon-svg {
  width: 20px;
  height: 20px;
}

.quote-wizard__card:has(input:checked) {
  border-color: var(--premium-forest);
  background: var(--premium-sage);
}

.quote-wizard__card:has(input:checked) .quote-wizard__card-icon {
  background: var(--premium-forest);
  color: #fff;
}

.quote-wizard__card:has(input:focus-visible) {
  outline: 3px solid var(--premium-lime);
  outline-offset: 2px;
}

.quote-wizard__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-wizard__fields label {
  display: grid;
  gap: 8px;
}

.quote-wizard__fields label > span {
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-wizard__fields input,
.quote-wizard__fields textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--premium-line);
  border-radius: 10px;
  font: inherit;
}

.quote-wizard__fields-full {
  grid-column: 1 / -1;
}

.quote-wizard__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 640px) {
  .quote-wizard {
    padding: 24px;
  }

  .quote-wizard__progress-step {
    font-size: 0.9rem;
  }

  .quote-wizard__fields {
    grid-template-columns: 1fr;
  }

  .quote-wizard__nav {
    flex-direction: column-reverse;
  }

  .quote-wizard__nav .premium-button {
    width: 100%;
    justify-content: center;
  }
}

.premium-button--dark {
  color: #fff;
  background: var(--premium-forest);
}

.premium-button--dark:hover {
  color: #fff;
  background: var(--premium-deep);
}

.service-detail__content {
  color: var(--premium-muted);
  font-size: 1.16rem;
}

.service-detail__content p:first-child {
  color: var(--premium-ink);
  font-family: var(--premium-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.legal-page__layout {
  display: grid;
  grid-template-columns: 0.45fr 1.25fr;
  gap: 80px;
}

.legal-page__content {
  max-width: 760px;
  color: var(--premium-muted);
}

.legal-page__content h2 {
  margin: 0 0 36px;
  color: var(--premium-ink);
  font-family: var(--premium-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.legal-page__content p {
  padding: 18px 0;
  margin: 0;
  border-top: 1px solid var(--premium-line);
}

.legal-page__content strong {
  color: var(--premium-ink);
}

.legal-page__content h3 {
  margin: 32px 0 8px;
  color: var(--premium-ink);
  font-family: var(--premium-display);
  font-size: 1.3rem;
  font-weight: 650;
}

.legal-services-table-wrap {
  margin: 12px 0 28px;
  overflow-x: auto;
}

.legal-services-table {
  width: 100%;
  min-width: 640px;
  font-size: 0.85rem;
  border-collapse: collapse;
}

.legal-services-table th,
.legal-services-table td {
  padding: 10px 12px;
  border: 1px solid var(--premium-line);
  text-align: left;
  vertical-align: top;
}

.legal-services-table th {
  color: var(--premium-ink);
  background: var(--premium-sand);
  font-weight: 650;
}

.premium-contact--subpage {
  padding-block: 100px;
}

@media (max-width: 1080px) {
  .header-phone {
    display: none;
  }

  .premium-service,
  .premium-service:nth-child(1),
  .premium-service:nth-child(6) {
    grid-column: span 6;
  }

  .premium-service:nth-child(1) .premium-service__visual,
  .premium-service:nth-child(6) .premium-service__visual {
    aspect-ratio: 4 / 3;
  }

  .premium-intro__grid {
    grid-template-columns: 0.25fr 1fr;
  }

  .premium-intro__promise {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 112px;
  }

  .brand-logo {
    max-width: 320px;
    height: 96px;
  }

  .container {
    width: min(calc(100% - 40px), var(--premium-width));
  }

  .nav-toggle {
    display: block;
    border-color: var(--premium-line);
  }

  .nav-toggle span {
    background: var(--premium-ink);
  }

  .site-nav {
    top: 108px;
    color: var(--premium-ink);
    background: var(--premium-sand);
    box-shadow: 0 12px 24px -18px rgba(15, 26, 18, 0.25);
  }

  .site-nav a,
  .site-nav .header-phone {
    color: var(--premium-ink);
  }

  .site-nav .header-phone {
    display: block;
  }

  .premium-heading,
  .premium-hero__inner,
  .premium-project,
  .premium-project:nth-child(even),
  .premium-expertise__grid,
  .premium-reviews__layout,
  .premium-area__layout,
  .premium-home-about__layout,
  .subpage-regions__layout,
  .contact-page__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .premium-hero__inner {
    padding: 48px 0 56px;
  }

  .premium-hero__visual {
    order: -1;
    aspect-ratio: 16 / 10;
  }

  .subpage-lead__layout,
  .subpage-story__layout,
  .service-detail__layout,
  .legal-page__layout {
    grid-template-columns: 0.3fr 1fr;
    gap: 36px;
  }

  .premium-home-about__skills,
  .service-inventory__grid,
  .page-image-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-page blockquote {
    grid-template-columns: 44px 1fr;
  }

  .reviews-page footer {
    grid-column: 2;
  }

  .premium-project:nth-child(even) .premium-project__media,
  .premium-project:nth-child(even) .premium-project__caption {
    grid-row: auto;
    grid-column: auto;
  }

  .premium-catalog__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--premium-width));
  }

  .container.container--wide {
    width: min(calc(100% - 32px), 1500px);
  }

  .brand-logo {
    max-width: 240px;
    height: 78px;
  }

  .header-inner {
    min-height: 92px;
  }

  .site-nav {
    top: 96px;
  }

  .premium-section {
    padding: 76px 0;
  }

  .premium-home-about {
    padding: 76px 0;
  }

  .premium-hero__inner {
    padding: 32px 0 40px;
  }

  .premium-hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .premium-hero__facts {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: 32px;
  }

  .premium-hero__facts > * {
    min-height: 82px;
    padding: 14px 16px 0 0;
  }

  .premium-hero__facts > * + * {
    padding-left: 16px;
  }

  .premium-hero__facts > *:last-child {
    display: none;
  }

  .premium-hero__controls {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .premium-hero__arrow {
    width: 36px;
    height: 36px;
  }

  .premium-hero__arrow svg {
    width: 15px;
    height: 15px;
  }

  .premium-intro__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .premium-intro__promise {
    grid-column: auto;
  }

  .premium-service {
    grid-column: span 12 !important;
  }

  .premium-service__body {
    min-height: auto;
    padding: 24px;
  }

  .premium-service__arrow {
    position: static;
    display: block;
    margin-top: 20px;
  }

  .premium-project-list {
    gap: 48px;
  }

  .premium-project {
    gap: 22px;
  }

  .premium-project__media {
    aspect-ratio: 4 / 3;
  }

  .premium-expertise__steps article {
    grid-template-columns: 34px 1fr;
  }

  .premium-expertise__steps p {
    grid-column: 2;
  }

  .premium-catalog__grid,
  .premium-area ul,
  .premium-home-about__skills,
  .service-inventory__grid,
  .page-content-visuals__grid,
  .page-image-gallery__grid,
  .transformation-copy__grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .page-content-visuals figure.is-primary {
    grid-column: auto;
  }

  .page-content-visuals .is-primary img {
    aspect-ratio: 4 / 3;
  }

  .page-image-gallery__heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .subpage-hero {
    min-height: 240px;
  }

  .subpage-hero__inner {
    padding-block: 36px 36px;
  }

  .subpage-lead__layout,
  .subpage-story__layout,
  .service-detail__layout,
  .legal-page__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-gallery__list article:nth-child(even) {
    width: 100%;
  }

  .project-work-media,
  .project-work-media--single {
    grid-template-columns: 1fr;
  }

  .reviews-page blockquote {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-page footer {
    grid-column: auto;
  }

  .contact-page__form {
    padding: 28px 20px;
  }

  .premium-reviews__score {
    margin-top: 30px;
  }

  .premium-reviews blockquote {
    padding: 26px 22px;
  }

  .premium-contact {
    padding: 90px 0;
  }
}

/* ---------- Organic section-wave dividers ---------- */

.section-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 70px;
  line-height: 0;
  pointer-events: none;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .section-wave {
    height: 40px;
  }
}

/* ---------- Stats band ("Neden Green Medi") ---------- */

.stats-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: #fff;
  background: var(--premium-forest);
}

.stats-band__heading {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.stats-band__heading .overline {
  color: var(--premium-lime);
}

.stats-band__heading h2 {
  margin: 10px 0 0;
  font-family: var(--premium-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.stats-band__item strong {
  display: block;
  font-family: var(--premium-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stats-band__item strong .stats-band__suffix {
  font-family: var(--premium-body);
  font-size: 0.5em;
  font-weight: 700;
  opacity: 0.75;
}

.stats-band__item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .stats-band {
    padding: 64px 0;
  }

  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
}
