:root {
  --night: #05070d;
  --ink: #090e1b;
  --gold: #d9a458;
  --gold-bright: #ffd892;
  --cream: #f5ecdc;
  --muted: #d9d0c0;
  --blue-glow: #57a6ff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--cream);
  font-family: var(--serif);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 3vw, 34px) clamp(18px, 7vw, 92px);
  pointer-events: none;
}

.topbar > * {
  pointer-events: auto;
}

.hamburger,
.lang-badge {
  width: clamp(52px, 7vw, 76px);
  height: clamp(48px, 7vw, 70px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 216, 146, .7);
  border-radius: 8px;
  background: rgba(8, 11, 20, .32);
  box-shadow: 0 0 16px rgba(217, 164, 88, .35), inset 0 0 16px rgba(217, 164, 88, .12);
  color: var(--cream);
}

.hamburger {
  gap: 7px;
  padding: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.hamburger span {
  width: 44px;
  height: 3px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffc979, #f8ad55);
  box-shadow: 0 0 9px rgba(255, 191, 108, .75);
  transition: transform .25s ease, opacity .25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.lang-badge {
  font-family: var(--sans);
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: .03em;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 19;
  width: min(340px, 84vw);
  min-height: 100svh;
  padding: 112px 0 28px;
  background: rgba(5, 8, 15, .96);
  border-right: 1px solid rgba(255, 216, 146, .5);
  box-shadow: 14px 0 36px rgba(0, 0, 0, .6);
  transform: translateX(-104%);
  transition: transform .3s ease;
}

.menu.open {
  transform: translateX(0);
}

.menu a {
  display: block;
  padding: 16px 34px;
  font-size: 18px;
  letter-spacing: .05em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 216, 146, .16);
}

.city-section {
  position: relative;
  isolation: isolate;
  background: url("assets/arka-plan-4-genis.jpeg") center top / cover no-repeat;
}

.city-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 53% 12%, rgba(255, 174, 85, .16), transparent 20%),
    linear-gradient(180deg, rgba(2, 4, 10, .12) 0%, rgba(2, 4, 10, .08) 46%, rgba(2, 4, 10, .84) 100%);
}

.section-shell {
  width: min(1024px, 100%);
  margin: 0 auto;
  padding-inline: clamp(24px, 9vw, 96px);
}

.brand-logo {
  width: clamp(220px, 39vw, 360px);
  margin-inline: auto;
  mix-blend-mode: screen;
  opacity: .92;
  filter: brightness(1.08) contrast(1.1) drop-shadow(0 0 12px rgba(255, 181, 94, .32));
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 48%, #000 58%, rgba(0, 0, 0, .72) 74%, transparent 100%);
  mask-image: radial-gradient(ellipse 62% 58% at 50% 48%, #000 58%, rgba(0, 0, 0, .72) 74%, transparent 100%);
}

.hero {
  min-height: 850px;
  padding-top: clamp(58px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-logo {
  width: clamp(210px, 24vw, 310px);
  margin-top: 0;
}

.hero-copy {
  width: min(690px, 92%);
  margin-top: clamp(22px, 3.4vw, 38px);
  text-align: left;
}

.hero-kicker {
  margin: 0;
  color: #f3ad5c;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .03em;
  text-shadow: 0 2px 9px rgba(0, 0, 0, .78), 0 0 16px rgba(255, 157, 75, .4);
}

.hero-rule {
  display: block;
  width: 58%;
  height: 2px;
  margin: 10px 0 8px;
  background: linear-gradient(90deg, rgba(255, 220, 140, .95), rgba(255, 220, 140, 0));
  box-shadow: 0 0 12px rgba(255, 180, 80, .45);
}

.hero-rule-short {
  width: 45%;
}

.hero h1 {
  margin: 0;
  font-size: clamp(45px, 8vw, 74px);
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--cream);
  text-shadow: 0 3px 12px rgba(0, 0, 0, .9);
}

.hero h1 span {
  display: block;
}

.hero h1 .gold {
  color: #e6a25b;
}

.hero h1 .services {
  font-size: .72em;
  letter-spacing: .08em;
}

.hero-subtitle {
  margin: 28px 0 0;
  color: #f0e8dd;
  font-family: var(--sans);
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.6;
  letter-spacing: .02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .9);
}

.hero-subtitle span {
  display: block;
}

.image-button {
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: filter .2s ease, transform .2s ease;
}

.image-button:hover {
  filter: brightness(1.13);
  transform: translateY(-1px);
}

.quote-button {
  width: min(620px, 84vw);
  margin: 28px auto 0;
}

.welcome {
  padding-top: 74px;
  padding-bottom: 92px;
  text-align: center;
}

.divider {
  width: min(430px, 72%);
  height: 22px;
  margin: 14px auto;
  object-fit: cover;
  object-position: center 51%;
  filter: brightness(1.2) saturate(1.15);
}

.divider-top {
  margin-bottom: 4px;
}

.divider-small {
  width: min(330px, 58%);
  height: 16px;
}

.welcome h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.1;
  letter-spacing: .025em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .88);
}

.welcome h2 span {
  color: #e58e45;
}

.welcome p {
  margin: 10px 0 0;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .88);
}

.welcome em {
  color: #d98242;
  font-style: normal;
}

.welcome-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin: 24px auto 36px;
  max-width: 760px;
  align-items: start;
}

.welcome-cards img,
.reference-grid img,
.contact-cards img {
  box-shadow: 0 0 16px rgba(65, 151, 255, .24), 0 0 16px rgba(255, 188, 96, .2);
}

.welcome-cards img {
  width: 100%;
}

.action-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 18px);
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.phone-scene {
  position: relative;
  padding: 0 clamp(12px, 3vw, 28px);
  background: url("assets/arka-plan-1.jpeg") center / cover fixed no-repeat;
}

.vision-scene {
  background-image: url("assets/arka-plan-2.png");
}

.services-scene {
  background-image: url("assets/arka-plan-5-genis.jpeg");
}

.contact-scene {
  background-image: url("assets/arka-plan-6-genis.jpeg");
}

.phone-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, .34);
}

.phone-frame {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 58px) clamp(26px, 7vw, 66px);
  overflow: hidden;
  border: 12px solid #030409;
  border-radius: 78px;
  background:
    linear-gradient(rgba(6, 8, 14, .22), rgba(6, 8, 14, .54)),
    url("assets/arka-plan-2.png") center top / cover no-repeat;
  box-shadow:
    0 0 0 2px rgba(255, 216, 146, .35),
    0 0 0 8px rgba(255, 216, 146, .12),
    inset 0 0 120px rgba(0, 0, 0, .52),
    0 22px 70px rgba(0, 0, 0, .62);
  text-align: center;
}

.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  top: 18%;
  width: 4px;
  height: 110px;
  border-radius: 6px;
  background: linear-gradient(#191a20, #6c5644, #191a20);
}

.phone-frame::before {
  left: -10px;
}

.phone-frame::after {
  right: -10px;
}

.panel-logo {
  width: clamp(230px, 46vw, 380px);
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  color: #ffe4b3;
  font-size: clamp(40px, 7vw, 62px);
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .86), 0 0 16px rgba(255, 176, 85, .22);
}

.upper {
  text-transform: uppercase;
}

.lead,
.phone-frame p {
  color: var(--muted);
  font-size: clamp(19px, 2.8vw, 25px);
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
}

.gold-list {
  margin: 24px auto;
  padding: 0;
  max-width: 600px;
  list-style: none;
  text-align: left;
}

.gold-list li {
  position: relative;
  padding: 7px 0 7px 34px;
  color: var(--muted);
  font-size: clamp(18px, 2.5vw, 23px);
  line-height: 1.45;
}

.gold-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 4px;
  color: var(--gold-bright);
  font-size: 30px;
  text-shadow: 0 0 8px rgba(255, 190, 100, .62);
}

.compact li {
  padding-block: 2px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .92fr);
  gap: 26px;
  align-items: center;
  margin: 44px auto 24px;
  text-align: left;
}

.founder-card img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid rgba(255, 216, 146, .72);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(255, 180, 80, .26);
}

.founder-card h3 {
  margin: 0 0 6px;
  color: #ffe4b3;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
}

.founder-card .role {
  margin: 0 0 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(15px, 2.2vw, 19px);
  line-height: 1.35;
  letter-spacing: .04em;
}

.founder-card p {
  margin: 0 0 12px;
  font-size: clamp(16px, 2.4vw, 21px);
}

.tagline {
  color: var(--gold-bright) !important;
  font-style: italic;
}

.founder-text {
  text-align: left;
}

.founder-text p {
  font-size: clamp(17px, 2.4vw, 22px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 34px);
  margin: 58px auto 36px;
  max-width: 620px;
}

.service-grid > img,
.interior-service {
  width: 100%;
  border-radius: 11px;
  filter: drop-shadow(0 0 16px rgba(255, 181, 91, .22));
}

.interior-service {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 931 / 1219;
  border: 1px solid rgba(255, 216, 146, .8);
  background: #08101d;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, .55), 0 0 16px rgba(72, 159, 255, .26);
}

.interior-service img {
  width: 100%;
  height: 64%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(#000 72%, transparent);
  mask-image: linear-gradient(#000 72%, transparent);
}

.interior-service figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  color: #ffe4b3;
  font-size: clamp(25px, 4vw, 36px);
  text-shadow: 0 2px 9px rgba(0, 0, 0, .78);
}

.interior-service::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 12px rgba(255, 184, 95, .62);
}

.service-note {
  max-width: 610px;
  margin: 0 auto;
}

.service-note strong {
  color: var(--gold-bright);
}

.cadence {
  color: #ffe5bd !important;
  margin-top: 30px;
}

.references {
  min-height: 100svh;
  padding: clamp(58px, 5vw, 76px) clamp(18px, 4vw, 56px) clamp(58px, 6vw, 92px);
  background-image: url("assets/arka-plan-3-genis.jpeg");
  background-position: center top;
}

.references-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.shield-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 26px);
}

.shield-line span {
  width: min(300px, 26vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
  box-shadow: 0 0 12px rgba(255, 190, 100, .5);
}

.shield-line span:last-child {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.shield-line img {
  width: clamp(84px, 7vw, 106px);
  mix-blend-mode: screen;
  filter: brightness(1.08) contrast(1.12) drop-shadow(0 0 10px rgba(255, 190, 100, .36));
  -webkit-mask-image: radial-gradient(ellipse 48% 48% at 50% 50%, #000 64%, rgba(0, 0, 0, .7) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 48% 48% at 50% 50%, #000 64%, rgba(0, 0, 0, .7) 78%, transparent 100%);
}

.references h2 {
  margin: 16px 0 0;
  font-size: clamp(56px, 6.7vw, 82px);
  line-height: 1;
  letter-spacing: .03em;
  color: #ffe1a0;
  text-shadow: 0 3px 9px rgba(0, 0, 0, .9), 0 0 20px rgba(255, 188, 92, .28);
}

.references-lead {
  margin: 18px 0 0;
  color: #ffe4b3;
  font-size: clamp(22px, 2.7vw, 31px);
}

.references-sub {
  margin: 6px auto 0;
  color: var(--cream);
  font-size: clamp(13px, 1.45vw, 18px);
  letter-spacing: .05em;
}

.reference-grid {
  display: grid;
  gap: clamp(10px, 1.8vw, 18px);
}

.main-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.lower-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(10px, 1.8vw, 18px);
}

.reference-grid img {
  border: 1px solid rgba(255, 216, 146, .78);
}

.references h3 {
  margin: 42px 0 8px;
  color: #ffe4b3;
  font-size: clamp(27px, 4vw, 44px);
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .82);
}

.project-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 42px;
  max-width: 820px;
  margin: 0 auto;
}

.project-lists .gold-list {
  margin: 0;
}

.legal {
  max-width: 980px;
  margin: 58px auto 0;
  color: rgba(245, 236, 220, .8);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.contact-scene .phone-frame {
  background-image:
    linear-gradient(rgba(6, 8, 14, .16), rgba(6, 8, 14, .44)),
    url("assets/arka-plan-6-genis.jpeg");
}

.contact-label {
  display: inline-block;
  margin: 4px auto 20px;
  padding: 8px 44px;
  border: 1px solid rgba(255, 216, 146, .45);
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(17px, 3vw, 24px);
  letter-spacing: .2em;
  background: rgba(8, 10, 18, .38);
}

.contact-copy {
  max-width: 560px;
  margin-inline: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 18px);
  margin: 42px auto 34px;
  align-items: center;
}

.contact-form h3 {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: clamp(33px, 5.5vw, 50px);
  font-weight: 500;
}

.contact-form h3::before,
.contact-form h3::after {
  content: "";
  display: inline-block;
  width: min(110px, 18vw);
  height: 1px;
  margin: 0 14px .25em;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
  vertical-align: middle;
}

.contact-form h3::after {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 12px 26px;
  border: 1px solid rgba(255, 216, 146, .8);
  border-radius: 5px;
  background-color: rgba(4, 7, 14, .52);
  background-image: url("assets/alan-email.png");
  background-size: 100% 100%;
  color: var(--cream);
  font: 22px var(--sans);
  outline: none;
  box-shadow: 0 0 12px rgba(80, 154, 255, .24);
}

.contact-form input[name="adsoyad"] {
  background-image: url("assets/alan-adsoyad.png");
}

.contact-form input[name="telefon"] {
  background-image: url("assets/alan-telefon.png");
}

.contact-form input[name="email"] {
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(255, 171, 74, .95) 0 2px, rgba(255, 171, 74, .32) 0 10%, transparent 22%),
    radial-gradient(ellipse at 50% 100%, rgba(63, 151, 255, 1) 0 2px, rgba(63, 151, 255, .34) 0 12%, transparent 26%),
    radial-gradient(circle at 34% 48%, rgba(44, 127, 255, .18), transparent 30%),
    linear-gradient(180deg, rgba(5, 9, 17, .96), rgba(2, 5, 12, .98));
  border-color: rgba(255, 216, 146, .92);
  box-shadow:
    0 0 0 1px rgba(37, 112, 255, .52),
    0 0 15px rgba(80, 154, 255, .34),
    inset 0 0 24px rgba(0, 0, 0, .68);
}

.contact-form input[name="email"]::placeholder {
  color: rgba(245, 236, 220, .88);
  letter-spacing: .02em;
}

.contact-form textarea {
  min-height: 116px;
  padding-top: 18px;
  resize: vertical;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(255, 171, 74, .88) 0 2px, rgba(255, 171, 74, .24) 0 8%, transparent 19%),
    radial-gradient(ellipse at 50% 100%, rgba(63, 151, 255, .95) 0 2px, rgba(63, 151, 255, .22) 0 10%, transparent 22%),
    radial-gradient(circle at 28% 42%, rgba(54, 134, 255, .16), transparent 28%),
    linear-gradient(180deg, rgba(6, 10, 18, .9), rgba(3, 6, 13, .94));
  box-shadow:
    0 0 0 1px rgba(37, 112, 255, .4),
    0 0 12px rgba(80, 154, 255, .3),
    inset 0 0 24px rgba(0, 0, 0, .65);
}

.contact-form textarea::placeholder {
  color: rgba(245, 236, 220, .84);
  font-size: 24px;
  letter-spacing: .02em;
}

.submit-button {
  width: min(360px, 54%);
  margin: 10px auto 0;
}

.form-note {
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: clamp(15px, 2.3vw, 20px) !important;
}

.form-note.ok {
  color: var(--gold-bright);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.location-row {
  display: grid;
  grid-template-columns: 1fr .94fr;
  gap: 14px;
  margin: 32px 0 28px;
  align-items: stretch;
}

.address-card,
.map-card,
.map-card2 {
  min-height: 104px;
  border: 1px solid rgba(255, 216, 146, .5);
  background: rgba(6, 8, 14, .46);
  box-shadow: 0 0 14px rgba(72, 159, 255, .2);
}

.address-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  text-align: left;
}

.address-card p {
  margin: 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.35;
}

.pin {
  color: #ffd9b3;
  font-size: 48px;
  text-shadow: 0 0 12px rgba(255, 190, 100, .5);
}

.map-card {
  background:
    radial-gradient(circle at 58% 50%, rgba(255, 202, 122, .9) 0 4%, transparent 8%),
    linear-gradient(130deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .42)),
    url("assets/arka-plan-3-genis.jpeg") center bottom / cover;
}

.map-card2 {
  aspect-ratio: 1393 / 414;
  min-height: 0;
  background-image:
    linear-gradient(130deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .18)),
    url("assets/adres-foto.png");
  background-position: center, center center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.contact-actions {
  margin-top: 0;
}

.footer {
  padding: 34px 20px 42px;
  background: #03050a;
  text-align: center;
}

.footer p {
  margin: 0;
  color: rgba(245, 236, 220, .68);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .08em;
}

@media (min-width: 900px) {
  .phone-scene {
    padding: clamp(42px, 4vw, 64px) clamp(34px, 6vw, 84px) clamp(72px, 8vw, 118px);
    background-attachment: fixed;
  }

  .phone-scene::before {
    background:
      radial-gradient(circle at 50% 22%, rgba(255, 176, 86, .12), transparent 24%),
      linear-gradient(180deg, rgba(4, 6, 12, .36), rgba(4, 6, 12, .72));
  }

  .phone-frame {
    width: min(1180px, 100%);
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible;
    background: transparent !important;
    box-shadow: none !important;
  }

  .phone-frame::before,
  .phone-frame::after {
    display: none;
  }

  .hero {
    min-height: 940px;
  }

  .hero-logo {
    width: 280px;
  }

  .hero-copy {
    margin-top: -28px;
  }

  .hero-kicker {
    font-size: 56px;
  }

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

  .hero-subtitle {
    margin-top: 20px;
    font-size: 27px;
    line-height: 1.45;
  }

  .quote-button {
    margin-top: 18px;
  }

  .welcome {
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .welcome-cards {
    max-width: 780px;
    gap: 26px;
    margin-top: 26px;
    margin-bottom: 34px;
  }

  .welcome-cards img {
    height: 238px;
    object-fit: fill;
  }

  .welcome .action-row {
    max-width: 790px;
    gap: 72px;
  }

  .welcome .action-row .image-button img {
    width: 100%;
    height: 54px;
    object-fit: fill;
  }

  .vision-scene .phone-frame,
  .services-scene .phone-frame,
  .contact-scene .phone-frame {
    padding: clamp(8px, 1.2vw, 16px) 0 clamp(18px, 2vw, 28px);
  }

  .panel-logo {
    width: clamp(240px, 19vw, 330px);
    margin-bottom: clamp(18px, 2vw, 26px);
  }

  .vision-scene .lead,
  .vision-scene .phone-frame > p {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .founder-card {
    max-width: 960px;
  }

  .founder-text {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 36px;
  }

  .founder-text .gold-list {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .service-grid {
    max-width: 900px;
  }

  .contact-copy {
    max-width: 690px;
  }

  .contact-cards {
    max-width: 900px;
    gap: 26px;
    margin-top: 40px;
    margin-bottom: 34px;
  }

  .contact-actions,
  .location-row {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form input {
    min-height: 62px;
  }

  .contact-form textarea {
    min-height: 128px;
  }

  .submit-button {
    width: 354px;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .topbar {
    padding: 16px 18px;
  }

  .hamburger,
  .lang-badge {
    width: 54px;
    height: 48px;
  }

  .hamburger {
    padding: 10px;
  }

  .hamburger span {
    width: 42px;
  }

  .hero {
    min-height: 900px;
    padding-top: 78px;
  }

  .section-shell {
    padding-inline: 22px;
  }

  .brand-logo {
    width: 205px;
  }

  .hero-logo {
    width: 210px;
  }

  .hero-copy {
    width: 100%;
    margin-top: 38px;
    margin-inline: 0;
  }

  .hero-kicker {
    font-size: clamp(36px, 12vw, 48px);
  }

  .hero h1 {
    font-size: clamp(34px, 9.7vw, 39px);
    line-height: 1.12;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-subtitle {
    margin-top: 24px;
    font-size: clamp(19px, 5.2vw, 23px);
    line-height: 1.6;
  }

  .quote-button {
    width: min(330px, 86%);
  }

  .welcome {
    padding: 42px 16px 58px;
  }

  .welcome h2 {
    font-size: clamp(31px, 8.5vw, 38px);
  }

  .welcome p {
    font-size: clamp(20px, 5.8vw, 27px);
  }

  .welcome-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 340px;
    gap: 8px;
    margin-top: 18px;
    margin-bottom: 22px;
  }

  .welcome-cards img {
    width: 100%;
    height: 96px;
    object-fit: fill;
  }

  .welcome .action-row,
  .contact-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 350px;
    gap: 8px;
  }

  .action-row .image-button img {
    width: 100%;
    height: auto;
  }

  .phone-scene {
    padding: 0 7px;
    background-attachment: scroll;
  }

  .phone-frame {
    border-width: 7px;
    border-radius: 42px;
    padding: 32px 18px 42px;
  }

  .phone-frame::before,
  .phone-frame::after {
    height: 86px;
    top: 16%;
  }

  .panel-logo {
    width: 205px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: clamp(37px, 10vw, 42px);
    line-height: 1.08;
  }

  .lead,
  .phone-frame p {
    font-size: clamp(18px, 5.1vw, 21px);
    line-height: 1.55;
  }

  .gold-list {
    margin: 22px auto;
  }

  .gold-list li {
    font-size: clamp(17px, 4.9vw, 20px);
    line-height: 1.42;
    padding-left: 28px;
  }

  .services-scene .section-title {
    font-size: clamp(30px, 8.4vw, 35px);
    letter-spacing: -.01em;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    margin: 38px auto 28px;
    max-width: 324px;
  }

  .interior-service figcaption {
    font-size: clamp(21px, 6vw, 27px);
  }

  .service-note {
    max-width: 320px;
  }

  .cadence {
    margin-top: 22px;
  }

  .founder-card {
    gap: 18px;
    margin-top: 32px;
  }

  .founder-card,
  .project-lists,
  .location-row {
    grid-template-columns: 1fr;
  }

  .main-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 26px;
  }

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

  .references {
    padding: 82px 14px 46px;
  }

  .shield-line {
    gap: 12px;
  }

  .shield-line span {
    width: min(112px, 30vw);
  }

  .shield-line img {
    width: 64px;
  }

  .references h2 {
    margin-top: 14px;
    font-size: clamp(34px, 10.2vw, 40px);
    letter-spacing: .01em;
  }

  .references .divider {
    width: 72%;
    height: 14px;
    margin: 10px auto;
  }

  .references-lead {
    margin-top: 14px;
    font-size: clamp(21px, 6vw, 25px);
    line-height: 1.25;
  }

  .references-sub {
    max-width: 340px;
    font-size: clamp(12px, 3.6vw, 15px);
    line-height: 1.35;
  }

  .references h3 {
    margin-top: 34px;
    font-size: clamp(24px, 7vw, 30px);
  }

  .project-lists {
    max-width: 330px;
  }

  .legal {
    margin-top: 34px;
    font-size: 11px;
    text-align: center;
  }

  .contact-label {
    margin-bottom: 18px;
    padding: 7px 38px;
    font-size: 17px;
  }

  .contact-copy {
    max-width: 310px;
  }

  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 338px;
    gap: 8px;
    margin: 28px auto 26px;
  }

  .contact-form h3 {
    font-size: clamp(31px, 8.8vw, 38px);
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-form label {
    margin-bottom: 9px;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 46px;
    padding: 9px 18px;
    font-size: 18px;
  }

  .contact-form textarea {
    min-height: 88px;
  }

  .contact-form textarea::placeholder {
    font-size: 20px;
  }

  .contact-form h3::before,
  .contact-form h3::after {
    display: none;
  }

  .submit-button {
    width: min(316px, 86%);
    margin-top: 8px;
  }

  .location-row {
    gap: 10px;
    margin: 26px auto 24px;
    max-width: 330px;
  }

  .address-card,
  .map-card,
  .map-card2 {
    min-height: 86px;
  }

  .map-card2 {
    min-height: 0;
  }

  .address-card {
    padding: 14px 18px;
  }

  .address-card p {
    font-size: 18px;
  }

  .pin {
    font-size: 38px;
  }

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

  .welcome-cards,
  .welcome .action-row,
  .contact-cards,
  .contact-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-scene .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
