:root {
  --orange: #ff5d22;
  --orange-dark: #e54d16;
  --orange-soft: #fff3ed;
  --black: #1a1a1a;
  --ink: #222222;
  --text: #5b5b5b;
  --muted: #7a7a7a;
  --line: #ececec;
  --bg: #ffffff;
  --soft: #f7f7f7;
  --soft-2: #f3f3f3;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
  --shadow-sm: 0 8px 24px rgba(26, 26, 26, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --pill: 999px;
  --container: 1240px;
  --header: 86px;
  --font: "Plus Jakarta Sans", "Montserrat", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 100px 0; }
#pricing, #homes, #book, #team { scroll-margin-top: 110px; }
.section-soft { background: var(--soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow svg { width: 16px; height: 16px; }

h1, h2, h3, h4 { margin: 0 0 16px; line-height: 1.15; letter-spacing: -0.03em; color: var(--black); }
h1 { font-size: clamp(40px, 5vw, 68px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; }
h3 { font-size: 24px; font-weight: 700; }
h2 em, h1 em, .italic {
  font-style: italic;
  font-weight: 800;
}

.lead {
  color: var(--text);
  font-size: 17px;
  max-width: 560px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }

.btn-outline {
  background: #fff;
  color: var(--black);
  border-color: #d8d8d8;
}
.btn-outline:hover { border-color: var(--black); }

.btn-white { background: #fff; color: var(--black); }
.btn-white:hover { background: #fff7f3; }

.btn-ghost { background: transparent; color: var(--black); padding-left: 8px; }
.btn-ghost:hover { color: var(--orange); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { width: 232px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: #3d3d3d;
  position: relative;
}
.nav a:hover,
.nav a.active { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: #fff;
  position: relative;
  color: var(--black);
}
.icon-btn:hover { border-color: var(--orange); color: var(--orange); }
.icon-btn svg { width: 18px; height: 18px; }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 5px auto;
  border-radius: 2px;
}

.hero {
  padding: 70px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-copy .lead { margin: 18px 0 28px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-shape {
  position: absolute;
  inset: 20px 0 0 12%;
  background: var(--orange);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
  border-radius: 0 80px 0 0;
}

.hero-shape.alt {
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 86% 100%, 0 100%, 0 12%);
}

.hero-photo {
  position: relative;
  z-index: 2;
  display: block;
  width: 86%;
  max-width: 100%;
  margin-left: auto;
  object-fit: cover;
  height: 540px;
  object-position: center top;
  border-radius: 28px 80px 28px 28px;
  background: #ececec;
  box-shadow: 0 22px 40px rgba(26, 26, 26, 0.16);
}

.page-hero { padding: 56px 0 0; background: #fff; }
.page-hero .hero-visual { min-height: 420px; }
.page-hero .hero-photo { height: 460px; }

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--orange); }

.marquee {
  background: var(--orange);
  color: #fff;
  overflow: hidden;
  padding: 18px 0;
  margin-top: 20px;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
  align-items: center;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
}

.marquee-item svg { width: 22px; height: 22px; flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.adv-card {
  padding: 10px 8px;
}

.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.adv-icon svg { width: 26px; height: 26px; }
.adv-card h3 { font-size: 20px; margin-bottom: 8px; }
.adv-card p { margin: 0; color: var(--text); font-size: 15px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}
.about-photo-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
}
.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 28px -22px -22px 40px;
  background: var(--orange);
  border-radius: 28px;
  z-index: -1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.stat span { color: var(--muted); font-size: 14px; font-weight: 600; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 42px;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head.center .lead { margin: 0 auto; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card .body {
  padding: 22px 22px 26px;
  position: relative;
}
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { color: var(--text); font-size: 14.5px; margin: 0 18px 0 0; }

.circle-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  position: absolute;
  right: 20px;
  bottom: 22px;
}
.circle-arrow svg { width: 16px; height: 16px; }

.accordion { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }

.acc-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.acc-item.open { border-color: #ffd4c2; background: #fffaf7; }

.acc-btn {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}
.acc-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.acc-item.open .acc-plus { background: var(--orange); color: #fff; }
.acc-panel {
  display: none;
  padding: 0 24px 22px;
  color: var(--text);
}
.acc-item.open .acc-panel { display: block; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
.works-right { display: grid; gap: 24px; }

.work-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
}
.work-card.tall { min-height: 584px; }
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.work-card .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
}
.tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.work-card h3 { color: #fff; font-size: 22px; margin: 0; }

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin: 8px 0 40px;
}
.toggle {
  background: var(--soft-2);
  border-radius: var(--pill);
  padding: 6px;
  display: inline-flex;
}
.toggle button {
  border: 0;
  background: transparent;
  padding: 10px 26px;
  border-radius: var(--pill);
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
}
.toggle button.active {
  background: var(--orange);
  color: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--soft);
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--orange);
  color: #fff;
  transform: translateY(-12px);
}
.price-card.featured h3,
.price-card.featured .price,
.price-card.featured p { color: #fff; }
.price-card h3 { font-size: 26px; }
.price-card > p { color: var(--text); min-height: 52px; }
.price {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 8px 0 4px;
  line-height: 1;
}
.price small { font-size: 16px; font-weight: 600; color: var(--muted); }
.price-card.featured .price small { color: rgba(255,255,255,0.8); }

.price-card ul { margin: 22px 0 28px; display: grid; gap: 12px; }
.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 15px;
}
.price-card li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
}
.price-card.featured li::before { color: #fff; }
.price-card .btn { margin-top: auto; width: 100%; }

.testimonials {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.testi-photo {
  border-radius: 28px;
  height: 560px;
  object-fit: cover;
  width: 100%;
}
.testi-list { display: grid; gap: 16px; }
.testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 8px; }
.testi-card p { margin: 0 0 14px; color: var(--text); }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-user strong { display: block; font-size: 14px; }
.testi-user span { color: var(--orange); font-size: 12px; font-weight: 600; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; }

input, select, textarea {
  width: 100%;
  border: 1px solid #e4e4e4;
  background: var(--soft);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); background: #fff; }
.field.error input,
.field.error select,
.field.error textarea { border-color: #e11d48; background: #fff5f6; }
.error-text { color: #e11d48; font-size: 12px; font-weight: 600; margin-top: 6px; display: none; }
.field.error .error-text { display: block; }

.field label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  line-height: 1.45;
}
.field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
}

.form-success {
  display: none;
  background: #ecfdf3;
  color: #067647;
  border: 1px solid #abefc6;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.form-success.show { display: block; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.news-card img { height: 210px; width: 100%; object-fit: cover; }
.news-card .body { padding: 22px; }
.news-meta { color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.news-card h3 { font-size: 20px; }

.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.cta-visual { position: relative; }
.cta-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}
.cta-visual::before {
  content: "";
  position: absolute;
  inset: 30px -30px -30px 40px;
  background: var(--orange);
  clip-path: polygon(10% 0, 100% 0, 100% 86%, 90% 100%, 0 100%, 0 14%);
}

.cta-orange {
  background: var(--orange);
  color: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cta-orange h3 { color: #fff; margin: 0; font-size: 32px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.team-card img { height: 320px; width: 100%; object-fit: cover; }
.team-card .body { padding: 22px; }
.team-card span { color: var(--orange); font-weight: 700; font-size: 13px; }

.timeline { position: relative; max-width: 980px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #eadfd8;
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  align-items: center;
}
.tl-item:nth-child(even) .tl-copy { order: -1; text-align: right; }
.tl-item img { height: 240px; width: 100%; object-fit: cover; border-radius: 20px; }
.year {
  color: var(--orange);
  font-weight: 800;
  font-size: 18px;
}

.map-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.map-pins {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  min-height: 420px;
  height: auto;
  display: block;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
}
.legal h2 { font-size: 28px; margin-top: 36px; }
.legal h3 { font-size: 20px; margin-top: 26px; }
.legal p, .legal li { color: var(--text); }
.legal ul { padding-left: 20px; list-style: disc; display: grid; gap: 8px; margin: 12px 0 18px; }

.detail-hero img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
}
.detail-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0 28px;
  color: var(--muted);
  font-weight: 600;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 40px;
}
.side-card {
  background: var(--soft);
  border-radius: 22px;
  padding: 28px;
  position: sticky;
  top: 110px;
}
.side-card .price { font-size: 42px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.gallery img { height: 180px; width: 100%; object-fit: cover; border-radius: 16px; }

.cart-table { display: grid; gap: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.cart-item img { width: 110px; height: 80px; object-fit: cover; border-radius: 12px; }
.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}
.remove {
  border: 0;
  background: transparent;
  color: #e11d48;
  font-weight: 700;
  cursor: pointer;
}
.cart-summary {
  background: var(--soft);
  border-radius: 22px;
  padding: 28px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
}
.total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 20px;
  margin: 16px 0 22px;
}
.empty-cart { text-align: center; padding: 50px 20px; color: var(--text); }

.site-footer {
  background: var(--soft);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr;
  gap: 32px;
}
.footer-brand p { color: var(--text); font-size: 14.5px; }
.footer-col h4 {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--orange); }

.news-form {
  display: flex;
  background: #fff;
  border-radius: var(--pill);
  overflow: hidden;
  border: 1px solid #e8e8e8;
}
.news-form input { border: 0; background: transparent; }
.news-form button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  margin: 4px;
}
.socials {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.socials a { color: var(--ink); font-weight: 700; font-size: 14px; }
.socials a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  margin-top: 48px;
  border-top: 1px solid #e8e8e8;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.footer-bottom .logo img { width: 170px; }

.video-block {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.video-block img { width: 100%; height: 460px; object-fit: cover; }
.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.play span {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(255,93,34,0.4);
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
    gap: 16px;
  }
  .menu-toggle { display: block; }
  .hero-grid,
  .about-grid,
  .faq-split,
  .contact-split,
  .cta-band,
  .testimonials,
  .detail-grid,
  .cart-layout,
  .works-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual, .page-hero .hero-visual { min-height: 380px; }
  .hero-photo, .page-hero .hero-photo { height: 380px; width: 100%; }
  .work-card.tall { min-height: 320px; }
  .tl-item, .tl-item:nth-child(even) .tl-copy { grid-template-columns: 1fr; text-align: left; }
  .tl-item:nth-child(even) .tl-copy { order: 0; }
  .timeline::before { display: none; }
}

@media (max-width: 800px) {
  .adv-grid,
  .service-grid,
  .steps,
  .price-grid,
  .news-grid,
  .team-grid,
  .testi-grid,
  .stats,
  .gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-actions .btn { display: none; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item .qty, .cart-item .line-total, .cart-item .remove { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-orange { flex-direction: column; text-align: center; }
  .section { padding: 70px 0; }
  .hero-shape { inset: 40px 0 0 0; }
}
