:root {
  --bg: #fbfaf7;
  --paper: #ffffff;
  --ink: #161513;
  --muted: #5f5c56;
  --soft: #eee9df;
  --line: #e7dfd1;
  --gold: #b4812e;
  --gold-dark: #94661f;
  --gold-soft: #d8b778;
  --dark: #11100f;
  --shadow: 0 18px 44px rgba(34, 26, 12, 0.11);
  --container: 684px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.section {
  padding: 76px 0;
}

.section-edge {
  border-top: 1px solid rgba(180, 129, 46, 0.08);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180, 129, 46, 0.12);
}

.nav-shell {
  min-height: 96px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 96px;
  overflow: visible;
}

.brand img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-reference {
  display: block;
  width: 205px;
  height: 96px;
  background-image: url("../../img/tasarim-2-referans.png");
  background-repeat: no-repeat;
  background-size: 690px 920px;
  background-position: -31px 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.phone-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-button {
  gap: 7px;
  padding: 0 13px;
  color: #fff;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 28px rgba(180, 129, 46, 0.26);
}

.button-icon {
  font-size: 12px;
  line-height: 1;
}

.phone-button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(180, 129, 46, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  background:
    linear-gradient(90deg, #fbfaf7 0%, #fbfaf7 47%, #f3f0eb 47%, #f5f2ed 100%);
}

.hero-grid {
  min-height: 324px;
  display: grid;
  grid-template-columns: 280px 404px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 33px 20px 30px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.why-copy h2,
.contact-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 260px;
  margin: 0;
  font-size: 41px;
  font-weight: 800;
  overflow-wrap: normal;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 250px;
  margin: 14px 0 22px;
  color: #2f2d29;
  font-size: 11px;
  line-height: 1.55;
}

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

.btn {
  min-width: 120px;
  padding: 0 14px;
  border: 1px solid var(--gold);
  text-transform: uppercase;
}

.btn-gold {
  color: #fff;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
}

.hero-visual {
  align-self: stretch;
  min-height: 324px;
  overflow: hidden;
  width: calc(100% + 42px);
  position: relative;
}

.hero-visual img {
  display: none;
}

.hero-reference {
  position: absolute;
  inset: 0 0 0 0;
  display: block;
  background-image: url("../../img/tasarim-2-referans.png");
  background-repeat: no-repeat;
  background-size: 768px 1024px;
  background-position: -322px -73px;
}

.hero-reference::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9%;
  background: linear-gradient(180deg, rgba(245, 242, 237, 0), #f5f2ed 42%, #f5f2ed);
}

.quick-services {
  padding: 28px 0 19px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.service-rounds {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  align-items: start;
}

.service-rounds a {
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.22;
}

.service-rounds img {
  width: 68px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f2eee7;
  box-shadow: 0 9px 24px rgba(24, 18, 10, 0.12);
}

.gold-line {
  display: block;
  width: 50px;
  height: 2px;
  margin: 20px auto 0;
  background: var(--gold);
}

.about-section {
  padding: 30px 0 24px;
  background: linear-gradient(180deg, #fff, #fbfaf7);
}

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

.video-feature {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: #0c0b09;
  cursor: pointer;
}

.video-feature video,
.video-card video {
  width: 100%;
  background: #0c0b09;
}

.video-feature video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-feature:not(.is-playing) video {
  opacity: 0;
}

.video-feature:not(.is-playing)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../../img/video1-kare-10s.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.video-feature:not(.is-playing)::after {
  content: "▶";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  text-indent: 5px;
  background: rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.about-copy {
  padding: 12px 0;
}

.about-copy h2 {
  max-width: 290px;
  margin: 0 0 14px;
  font-size: 27px;
}

.about-copy p:not(.section-kicker):not(.owner) {
  max-width: 310px;
  margin: 0;
  color: #3e3a34;
  font-size: 11px;
  line-height: 1.65;
}

.owner {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.owner span {
  display: block;
  margin-top: 5px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 11px;
}

.info-band {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  min-height: 67px;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #25221e;
  font-size: 11px;
  line-height: 1.25;
}

.info-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
}

.gallery-strip {
  padding: 9px 0 22px;
  color: #fff;
  background: var(--dark);
}

.strip-title {
  margin: 0 0 11px;
  text-align: center;
  color: #f4eadc;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.strip-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2,
.why-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 48px);
}

.section-heading p:not(.section-kicker),
.why-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.services-section {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(34, 26, 12, 0.07);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.service-card h3 {
  margin: 22px 22px 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.15;
}

.service-card p {
  margin: 0 22px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.video-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

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

.video-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.video-card video {
  aspect-ratio: 9 / 12;
  object-fit: cover;
  border-radius: 4px;
}

.video-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.18;
}

.video-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.why-section {
  background:
    linear-gradient(rgba(17, 16, 15, 0.82), rgba(17, 16, 15, 0.82)),
    url("../../img/hero-dugun-1.png") center / cover fixed;
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.why-copy p {
  color: #e5ded1;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(216, 183, 120, 0.38);
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.why-list span {
  grid-row: span 2;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.why-list h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.why-list p {
  margin: 0;
  color: #e9e1d5;
  line-height: 1.6;
}

.trust-section {
  background: var(--bg);
}

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

.trust-card {
  min-height: 230px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(34, 26, 12, 0.06);
}

.trust-card p {
  margin: 0 0 22px;
  color: #3e3a34;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.45;
}

.trust-card strong {
  color: var(--gold-dark);
}

.trust-card.highlight {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #1b1812);
  border-color: transparent;
}

.trust-card.highlight span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 800;
}

.trust-card.highlight p {
  color: #fff7e7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.process-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.process-grid article {
  min-height: 245px;
  padding: 26px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(34, 26, 12, 0.05);
}

.process-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.process-grid h3,
.feature-copy h2,
.faq-grid h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-section {
  background: linear-gradient(90deg, #15130f 0%, #15130f 50%, #fbfaf7 50%, #fbfaf7 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
  transform: none;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
}

.feature-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 3vw, 48px);
  max-width: 620px;
}

.feature-copy p {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.feature-points span {
  padding: 12px 15px;
  color: var(--gold-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.faq-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 46px;
  align-items: start;
}

.faq-grid h2 {
  margin: 0;
  font-size: clamp(32px, 3.1vw, 48px);
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-panel a,
.contact-panel p {
  margin: 0;
  min-height: 112px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
}

.contact-panel span {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer {
  color: #e8dfd1;
  background: #141210;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
  padding: 46px 0;
}

.footer-grid img {
  width: 170px;
  height: 92px;
  object-fit: contain;
  filter: brightness(1.1);
  mix-blend-mode: screen;
}

.footer-grid p {
  max-width: 420px;
  color: #c9bdab;
  line-height: 1.7;
}

.footer-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  color: #c9bdab;
}

.footer-bottom {
  padding: 17px 24px;
  text-align: center;
  color: #c9bdab;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 20px 0 18px;
  color: #fff;
  background: linear-gradient(180deg, #2fe06f, #1fb455);
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(31, 180, 85, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(31, 180, 85, 0.42);
}

.show-whatsapp .whatsapp-float {
  display: inline-flex;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: currentColor;
}

@media (max-width: 760px) {
  .nav-shell {
    grid-template-columns: 178px 1fr auto;
    gap: 18px;
  }

  .brand {
    width: 170px;
    height: 76px;
  }

  .brand-reference {
    display: block;
    width: 170px;
    height: 76px;
    background-size: 660px 880px;
    background-position: -30px -2px;
  }

  .site-nav {
    gap: 16px;
    font-size: 11px;
  }

  .phone-button {
    padding: 0 14px;
  }

  .hero-grid {
    grid-template-columns: 48% 52%;
  }

  .service-rounds {
    gap: 14px;
  }
}

@media (min-width: 1000px) {
  :root {
    --container: 1180px;
  }

  .container {
    width: min(calc(100% - 96px), var(--container));
  }

  .nav-shell {
    min-height: 128px;
    grid-template-columns: 300px 1fr auto;
    gap: 34px;
  }

  .brand {
    width: 280px;
    height: 128px;
  }

  .brand-reference {
    display: block;
    width: 280px;
    height: 126px;
    background-size: 980px 1307px;
    background-position: -44px 2px;
  }

  .site-nav {
    gap: 38px;
    font-size: 12px;
  }

  .phone-button {
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
  }

  .button-icon {
    font-size: 16px;
  }

  .hero-grid {
    min-height: 498px;
    grid-template-columns: 430px 1fr;
  }

  .hero-copy {
    padding: 50px 32px 50px 0;
  }

  .eyebrow,
  .section-kicker {
    font-size: 13px;
  }

  .hero h1 {
    max-width: 410px;
    font-size: 63px;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 395px;
    margin: 22px 0 31px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 18px;
  }

  .btn {
    min-width: 184px;
    min-height: 48px;
    font-size: 13px;
  }

  .hero-visual {
    min-height: 498px;
    width: calc(100% + 64px);
  }

  .hero-reference {
    background-size: 1180px 1573px;
    background-position: -495px -112px;
  }

  .hero-reference::after {
    height: 12%;
  }

  .quick-services {
    padding: 42px 0 34px;
  }

  .service-rounds {
    gap: 28px;
  }

  .service-rounds a {
    gap: 13px;
    font-size: 15px;
  }

  .service-rounds img {
    width: 96px;
  }

  .gold-line {
    width: 78px;
    margin-top: 30px;
  }

  .about-section {
    padding: 40px 0 38px;
  }

  .about-grid {
    grid-template-columns: 1.04fr 1fr;
    gap: 44px;
  }

  .about-copy {
    padding: 22px 0;
  }

  .about-copy h2 {
    max-width: 520px;
    margin-bottom: 22px;
    font-size: 46px;
  }

  .video-feature:not(.is-playing)::before {
    background-size: cover;
    background-position: center;
  }

  .about-copy p:not(.section-kicker):not(.owner) {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.75;
  }

  .owner {
    margin-top: 28px;
    font-size: 22px;
  }

  .owner span {
    font-size: 14px;
  }

  .info-grid {
    min-height: 96px;
  }

  .info-item {
    gap: 16px;
    font-size: 15px;
    line-height: 1.35;
  }

  .info-icon {
    flex-basis: 39px;
    width: 39px;
    height: 39px;
    font-size: 18px;
  }

  .gallery-strip {
    padding: 14px 0 30px;
  }

  .strip-title {
    font-size: 12px;
  }

  .strip-grid {
    gap: 12px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .nav-shell {
    min-height: 86px;
    grid-template-columns: 175px 1fr auto;
  }

  .brand {
    width: 155px;
    height: 76px;
  }

  .brand img {
    width: 108px;
    height: 70px;
  }

  .brand-reference {
    display: block;
    width: 155px;
    height: 76px;
    background-size: 620px 827px;
    background-position: -28px -2px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    inset: 86px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 24px;
    background: rgba(251, 250, 247, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(34, 26, 12, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .site-nav a::after {
    display: none;
  }

  .phone-button {
    display: none;
  }

  .hero {
    background: linear-gradient(180deg, #fbfaf7 0%, #fbfaf7 46%, #f3f0eb 46%, #f3f0eb 100%);
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 16px;
  }

  .hero-copy {
    padding: 30px 0 28px;
  }

  .hero h1 {
    font-size: clamp(40px, 9vw, 62px);
  }

  .hero-visual {
    min-height: auto;
    border-radius: 4px 4px 0 0;
    width: 100%;
  }

  .hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .hero-reference {
    display: none;
  }

  .service-rounds {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 26px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 0;
  }

  .services-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-section {
    background: linear-gradient(180deg, #15130f 0 260px, #fbfaf7 260px 100%);
  }

  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-image {
    transform: none;
  }

  .why-section {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .why-copy h2,
  .contact-section h2 {
    font-size: 28px;
    overflow-wrap: break-word;
  }

  .section-heading p:not(.section-kicker),
  .why-copy p,
  .contact-section p {
    font-size: 15px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .hero-copy {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 48px);
    max-width: 100%;
    overflow-wrap: break-word;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

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

  .service-rounds a {
    font-size: 14px;
  }

  .service-rounds img {
    width: 82px;
  }

  .about-grid {
    gap: 24px;
  }

  .info-grid,
  .services-grid,
  .process-grid,
  .trust-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 28px;
  }

  .feature-copy h2,
  .faq-grid h2 {
    font-size: 28px;
  }

  .feature-points span {
    width: 100%;
    text-align: center;
  }

  .strip-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
    scroll-snap-type: x mandatory;
  }

  .strip-grid img {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .video-card {
    grid-template-columns: 1fr;
  }

  .video-card video {
    aspect-ratio: 16 / 10;
  }

  .why-list article {
    grid-template-columns: 1fr;
  }

  .why-list span {
    grid-row: auto;
    margin-bottom: 10px;
  }

  .trust-card {
    min-height: 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 50px;
    padding: 0 16px 0 15px;
    font-size: 14px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    width: 145px;
    height: 72px;
  }

  .brand img {
    width: 96px;
    height: 64px;
  }

  .brand-reference {
    display: block;
    width: 145px;
    height: 72px;
    background-size: 600px 800px;
    background-position: -27px -2px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section-heading h2,
  .about-copy h2,
  .why-copy h2,
  .contact-section h2 {
    font-size: 25px;
  }

  .contact-panel a,
  .contact-panel p,
  .trust-card,
  .why-list article {
    padding: 20px;
  }
}
