.hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  max-height: 1300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-img {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  will-change: transform, opacity;
  animation: imgAppear 1.4s 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
  filter: contrast(1.08) saturate(0.9);
  background: var(--white);
  z-index: 1;
}
@keyframes imgAppear {
  0%   { opacity: 0; transform: scale(1.04); }
  30%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
.hero-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250,248,244,0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
   z-index: 2;
}
.hero-left-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--bark);
  transform: scaleY(0);
  transform-origin: top;
  animation: accentLine 1s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  z-index: 3;
}
@keyframes accentLine {
  to { transform: scaleY(1); }
}
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(6rem, 8vh, 9rem) clamp(2rem, 4vw, 4.5rem) clamp(2.5rem, 5vh, 4.5rem);
  background: var(--white);
  border-left: 1px solid var(--sand);
  justify-content: flex-end;
  isolation: isolate;
  contain: layout style;
}
.hero-headline {
  position: relative;
  z-index: 2;
}
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero-line + .hero-line { margin-top: 0; }
.hero-word {
  font-family: var(--serif);
  font-size: clamp(72px, 8.5vw, 190px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--black);
  display: block;
  opacity: 0;
  animation: slideUp .9s cubic-bezier(.22,1,.36,1) both;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.hero-word.italic {
  font-style: italic;
   padding-left: 0.08em;
}
.hero-word.light  { color: var(--bark); }
.hero-line:nth-child(1) .hero-word { animation-delay: .0s; }
.hero-line:nth-child(2) .hero-word { animation-delay: .10s; }
.hero-line:nth-child(3) .hero-word { animation-delay: .16s; }
.hero-line:nth-child(4) .hero-word { animation-delay: .22s; }
.hero-line:nth-child(5) .hero-word { animation-delay: .28s; }
.hero-line:nth-child(6) .hero-word { animation-delay: .34s; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-meta {
  position: absolute;
  right: clamp(12px, 1.5vw, 56px);
  bottom: clamp(80px, 7vw, 160px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(12px, 1.5vw, 32px);
  z-index: 5;
  animation: fadeIn 1.2s .5s ease both;
}
.hero-meta-text {
  font-size: clamp(12px, 1vw, 28px);
  line-height: 1.8;
  color: var(--black);
  text-align: right;
  max-width: clamp(240px, 20vw, 400px);
  letter-spacing: 0.05em;
}
.hero-cta {
  display: inline-block;
  font-size: clamp(12px, 0.6vw, 20px);
  font-weight: bold;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 2px solid var(--bark);
  padding-bottom: 4px;
  transition: border-color .3s, color .3s;
}
.hero-cta:hover {
  color: var(--white);
  border-color: var(--black);
}
.statement {
  padding: clamp(60px, 6vw, 140px) clamp(32px, 4vw, 100px) clamp(60px, 6vw, 140px);
  display: grid;
  grid-template-columns: clamp(180px, 16vw, 360px) 1fr;
  gap: clamp(40px, 5vw, 100px);
  border-top: 1px solid var(--sand);
}
.stmt-label {
  font-size: clamp(10px, 0.8vw, 18px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 16px;
}
.stmt-text {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 56px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--black);
  max-width: clamp(600px, 55vw, 1100px);
  margin-bottom: 40px;
}
.stmt-numbers {
  display: flex;
  gap: clamp(40px, 5vw, 120px);
}
.sn-num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--bark);
  letter-spacing: -0.02em;
}
.sn-label {
  font-size: clamp(9px, 0.6vw, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 10px;
}
.projects {
  padding: 0 clamp(24px, 3.5vw, 80px) clamp(60px, 6vw, 140px);
  scroll-margin-top: 90px;
}
.proj-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: clamp(40px, 4vw, 100px) 0 clamp(32px, 3vw, 72px);
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: clamp(36px, 4vw, 80px);
}
.proj-header h2 {
  font-family: var(--serif);
  font-size: clamp(12px, 0.9vw, 18px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.proj-header span {
  font-size: clamp(10px, 0.7vw, 15px);
  color: var(--stone);
  letter-spacing: 0.12em;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.2vw, 28px);
}
.proj {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.proj-img-wrap {
  overflow: hidden;
  position: relative;
}
.proj-placeholder {
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
  filter: brightness(0.70) saturate(0.80);
}
.proj-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proj:hover .proj-placeholder {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.proj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.55);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: clamp(18px, 1.8vw, 40px);
}
.proj:hover .proj-overlay { opacity: 1; }
.proj-overlay h3 {
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--bark);
  margin-bottom: 8px;
  margin-left: 8px;
}
.proj-overlay p {
  font-size: clamp(10px, 0.8vw, 18px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  margin-left: 8px;
}
.proj-caption { padding: clamp(10px, 0.8vw, 20px) 0 0; }
.proj-caption-title {
  font-family: var(--serif);
  font-size: clamp(14px, 1.2vw, 24px);
  font-weight: 400;
}
.proj-caption-meta {
  font-size: clamp(10px, 0.6vw, 18px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 5px;
}
.pa { grid-column: span 7; }
.pb { grid-column: span 5; }
.pc { grid-column: span 4; }
.pd { grid-column: span 8; }
.pe { grid-column: span 6; }
.pf { grid-column: span 6; }
.pg { grid-column: span 5; }
.ph { grid-column: span 7; }
.services {
  padding: clamp(40px, 4vw, 100px) clamp(24px, 5vw, 160px);
  background: var(--white);
  scroll-margin-top: 110px;
}
.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(48px, 5vw, 100px);
}
.svc-title {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 120px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--black);
}
.svc-title em {
  font-style: italic;
  color: var(--bark);
}
.svc-note {
  max-width: clamp(220px, 20vw, 500px);
  font-size: clamp(11px, 0.9vw, 26px);
  line-height: 1.85;
  color: var(--bark);
  letter-spacing: 0.04em;
  padding-bottom: 6px;
}
.svc-list { border-top: 1px solid var(--sand); }
.svc-item {
  display: grid;
  text-decoration: none;
  color: inherit;
  grid-template-columns: clamp(32px, 2.5vw, 80px) 1fr clamp(140px, 12vw, 240px) clamp(20px, 1.5vw, 36px);
  align-items: center;
  gap: clamp(20px, 3vw, 80px);
  padding: clamp(24px, 2.5vw, 48px) 0 clamp(24px, 2.5vw, 48px) clamp(24px, 2.5vw, 48px);
  border-bottom: 1px solid var(--sand);
  transition: background .3s, padding-left .4s;
  cursor: none;
}
.svc-item:hover {
  padding-left: 16px;
  background: var(--white);
}
.svc-item:hover .svc-arr {
  opacity: 1;
  transform: translateX(0);
}
.svc-n {
  font-family: var(--serif);
  font-size: clamp(14px, 1.2vw, 30px);
  color: var(--stone);
}
.svc-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 40px);
  font-weight: 400;
  color: var(--black);
}
.svc-sub {
  font-size: clamp(10px, 0.55vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 6px;
}
.svc-price {
  font-family: var(--serif);
  font-size: clamp(14px, 1.1vw, 30px);
  color: var(--bark);
  text-align: right;
}
.svc-price small {
  display: block;
  font-family: var(--sans);
  font-size: clamp(10px, 0.5vw, 14px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 2px;
}
.svc-arr {
  font-size: clamp(16px, 1.2vw, 24px);
  color: var(--bark);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}
.quote-wrap {
  padding: clamp(60px, 8vw, 180px) clamp(30px, 8vw, 160px);
  background: var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.quote-mark {
  font-family: var(--serif);
  font-size: clamp(60px, 6vw, 120px);
  color: var(--black);
  line-height: .6;
  margin-bottom: clamp(16px, 1.5vw, 32px);
  opacity: .4;
}
.quote-body {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 56px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--bark);
  max-width: clamp(600px, 55vw, 1100px);
  margin-bottom: clamp(24px, 2vw, 48px);
}
.quote-src {
  font-size: clamp(8px, 0.55vw, 12px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--black);
}
.process {
  padding: clamp(40px, 4vw, 100px) clamp(24px, 3.5vw, 80px);
  scroll-margin-top: 60px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
}
.step {
  background: var(--white);
  padding: clamp(28px, 3vw, 64px) clamp(20px, 2vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1vw, 20px);
  transition: background 0.3s;
}
.step:hover { background: var(--off); }
.step-n {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 100px);
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  letter-spacing: -0.03em;
}
.step:hover .step-n { color: var(--bark); }
.step:hover .step-title { color: var(--stone); }
.step-title {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--bark);
}
.step-text {
  font-size: clamp(11px, 0.8vw, 20px);
  line-height: 1.8;
  color: var(--black);
  letter-spacing: 0.03em;
  flex: 1;
}
.step-dur {
  font-size: clamp(10px, 0.6vw, 16px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  border-top: 1px solid #eee;
  padding-top: clamp(14px, 1.2vw, 28px);
  margin-top: 4px;
}
.testimonials {
  padding: clamp(20px, 4vw, 80px) clamp(24px, 3.5vw, 80px);
  background: var(--white);
  border-top: 1px solid var(--sand);
}
.test-grid {
  display: flex;
  gap: clamp(20px, 2vw, 80px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: clamp(16px, 1.5vw, 32px);
  cursor: none;
  justify-content: start;
}
.test-grid::-webkit-scrollbar {
  height: 1px;
  background: var(--white);
}
.test-grid::-webkit-scrollbar-thumb { background: var(--white); }
.test-card {
  min-width: clamp(260px, 22vw, 460px);
  max-width: clamp(260px, 22vw, 460px);
  flex-shrink: 0;
  scroll-snap-align: start;
  padding-top: clamp(20px, 2vw, 48px);
}
.test-body {
  font-family: var(--serif);
  font-size: clamp(16px, 1vw, 32px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--earth);
  margin-bottom: clamp(16px, 1.5vw, 32px);
  letter-spacing: 0.02em;
}
.test-name {
  font-size: clamp(9px, 0.9vw, 20px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark);
}
.test-role {
  font-size: clamp(9px, 1vw, 16px);
  color: var(--stone);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.contact {
  background: var(--earth);
  color: var(--white);
  padding: clamp(48px, 5vw, 100px) clamp(24px, 3.5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(80px, 15vw, 280px);
  align-items: start;
  transition: background .5s, color .5s;
}
.con-eyebrow {
  font-size: clamp(10px, 1vw, 30px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: clamp(10px, 1vw, 20px);
}
.con-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 100px);
  font-weight: 300;
  line-height: 0.92;
  margin-bottom: clamp(36px, 4vw, 72px);
  color: var(--white);
}
.con-title em {
  font-style: italic;
  color: var(--bark);
}
.con-details {
  display: flex;
  flex-direction: column;
}
.con-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 1vw, 20px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: clamp(12px, 1vw, 20px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
  transition: color .2s;
}
.con-row:hover { color: var(--white); }
.con-val {
  font-family: var(--serif);
  font-size: clamp(13px, 1.2vw, 28px);
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--white);
}
.con-val:hover { color: var(--bark); }
.messenger-link.tg:hover{ color:#2AABEE; }
.messenger-link.tg:hover svg{ fill:#2AABEE; }
.messenger-link.vb:hover{ color:#7360F2; }
.messenger-link.vb:hover svg{ fill:#7360F2; }
.con-row--address {
  justify-content: space-between;
  align-items: flex-start;
}
.con-row--address span:first-child { margin-right: clamp(20px, 2vw, 40px); }
.con-row--address .con-val {
  text-align: right;
  margin-left: auto;
}
.contact.light {
  border-top: 1px solid var(--sand);
  background: var(--white);
  color: var(--black);
}
.contact.light .con-eyebrow { color: var(--bark); }
.contact.light .con-title { color: var(--black); }
.contact.light .con-row {
   border-color: var(--sand);
   color: var(--stone);
}
.contact.light .con-val { color: var(--black); }
.contact.light .f-label { color: var(--stone); }
.contact.light .f-input { color: var(--black); }
.contact.light .f-field { border-color: var(--sand); }
.contact.light .f-field:focus-within { border-color: var(--stone); }
.contact.light .f-btn { color: var(--black); }
.contact.light .f-btn-circle { border-color: var(--stone); }
.contact.light .f-btn:hover .f-btn-circle { background: var(--black); color: var(--white); }
.contact.light .con-row:hover .con-val { color: var(--bark); }
.con-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 2vw, 48px);
  margin-bottom: clamp(36px, 4vw, 72px);
}
.reading-lamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: none;
  user-select: none;
  padding-top: clamp(12px, 1.5vw, 28px);
  padding-left: clamp(30px, 5vw, 160px);
  position: relative;
  width: auto;
}
.rl-shade {
  width: clamp(52px, 5vw, 96px);
  height: clamp(32px, 3.5vw, 64px);
  background: var(--bark);
  border-radius: 0;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  transition: background .4s;
  overflow: hidden;
}
.rl-shade::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 20%;
  width: 20%;
  height: 40%;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.rl-shade::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #c8611a;
  transition: background .4s;
}
.contact.light .rl-shade { background: var(--stone); }
.contact.light .rl-shade::after { background: #5a5048; }
.rl-bulb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  position: relative;
  z-index: 1;
  transition: background .4s, box-shadow .4s;
  flex-shrink: 0;
}
.contact.light .rl-bulb {
  background: #FFD580;
  box-shadow: 0 0 12px 6px rgba(255,210,80,0.7), 0 0 30px 12px rgba(255,180,40,0.3);
}
.rl-neck {
  width: 4px; height: 10px;
  background: var(--bark);
  transition: background .4s;
}
.contact.light .rl-neck { background: var(--stone); }
.rl-stem {
  width: 3px;
  height: clamp(48px, 5vw, 100px);
  background: var(--bark);
  transition: background .4s;
}
.contact.light .rl-stem { background: var(--stone); }
.rl-base {
  width: clamp(36px, 3.5vw, 68px);
  height: 10px;
  background: var(--bark);
  border-radius: 5px;
  position: relative;
  transition: background .4s;
}
.rl-base::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 8px;
  right: 8px;
  height: 4px;
  background: #444;
  border-radius: 0 0 4px 4px;
  transition: background .4s;
}
.contact.light .rl-base { background: var(--stone); }
.contact.light .rl-base::before { background: #c8611a; }
.rl-beam {
  position: absolute;
  top: clamp(24px, 2.5vw, 30px);
  left: 50%;
  transform: translateX(-50%);
  margin-left: clamp(30px, 4.5vw, 80px);
  width: clamp(52px, 5vw, 96px);
  height: clamp(100px, 10vw, 170px);
  border: none;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(255,220,100,0.5), transparent);
  transition: opacity .5s;
  filter: blur(8px);
  pointer-events: none;
}
.contact.light .rl-beam {
  opacity: 1;
  animation: beamPulse 3s ease-in-out infinite;
}
@keyframes beamPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.7; }
}
.rl-hint {
  font-size: clamp(7px, 0.5vw, 10px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.9;
  margin-top: 12px;
  transition: opacity .3s;
}
.reading-lamp:hover .rl-hint { opacity: 1; }
.contact.light .rl-hint { color: var(--stone); }
.con-messengers{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}
.messenger-link{
  display:flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
}
.messenger-link svg{ flex-shrink:0; }
.con-form {
  padding-top: 0;
  display: flex;
  flex-direction: column;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(16px, 2vw, 48px);
}
.f-field {
  border-bottom: 1px solid rgba(255,255,255,.50);
  padding: clamp(6px, 0.6vw, 12px) 0;
  transition: border-color .3s;
}
.f-field:focus-within { border-color: rgba(255,255,255,.70); }
.f-field--check {
  border-bottom: none;
  padding: 12px 0;
}
.f-label {
  font-size: clamp(9px, 0.7vw, 16px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: clamp(6px, 0.5vw, 12px);
  display: block;
}
.f-input::placeholder { color: var(--sand); }
.f-input option { background: var(--sand); }
.f-btn {
  margin-top: clamp(16px, 1.5vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.2vw, 24px);
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(14px, 1.1vw, 30px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: none;
  padding: 0;
  transition: gap .35s;
}
.f-btn:hover { gap: 32px; color: var(--bark); }
.f-btn-circle {
  width: clamp(36px, 3vw, 56px);
  height: clamp(36px, 3vw, 56px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 1.2vw, 22px);
  transition: all .35s;
  padding-left: 6px;
}
.f-btn:hover .f-btn-circle {
  background: var(--white);
  color: var(--bark);
  border-color: var(--white);
}
#feedback-form {
  display: flex;
  flex-direction: column;
}
#feedback-form input[type="text"],
#feedback-form input[type="tel"],
#feedback-form input[type="email"],
#feedback-form textarea {
  background: none;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-size: clamp(14px, 1.2vw, 30px);
  font-weight: 300;
  color: var(--white);
  width: 100%;
  resize: none;
  background: rgba(250, 248, 244, 0.05);
  border: 1px solid rgba(250, 248, 244, 0.15);
  border-radius: clamp(10px, 1vw, 20px);
  padding: clamp(8px, 0.7vw, 16px) clamp(10px, 0.9vw, 20px);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#feedback-form input[type="text"]::placeholder,
#feedback-form input[type="tel"]::placeholder,
#feedback-form input[type="email"]::placeholder,
#feedback-form textarea::placeholder {
  font-size: clamp(12px, 1vw, 28px);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  opacity: 0.8;
}
#feedback-form input[type="text"]:focus,
#feedback-form input[type="tel"]:focus,
#feedback-form input[type="email"]:focus,
#feedback-form textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
#feedback-alert {
  position: fixed;
  left: 50%;
  top: 30%;
  transform: translateX(-50%) translateY(50px);
  background: var(--white);
  color: var(--black);
  padding: clamp(24px, 3vw, 52px) clamp(28px, 4vw, 72px);
  border-radius: clamp(10px, 1vw, 16px);
  border-top: 2px solid var(--bark);
  box-shadow: 0 8px 40px rgba(53,60,63,0.15);
  z-index: 1100;
  opacity: 0;
  transition: all 0.4s ease;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2vw, 40px);
  pointer-events: none;
  width: clamp(300px, 50vw, 800px);
}
#feedback-alert.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
#feedback-alert-message {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 26px);
  font-weight: 400;
  color: var(--earth);
  line-height: 1.5;
}
.feedback-alert-btn {
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--bark);
  border-radius: 8px;
  padding: clamp(10px, 0.8vw, 16px) clamp(24px, 2.5vw, 48px);
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(10px, 0.7vw, 14px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.3s ease, transform 0.1s ease;
}
.feedback-alert-btn:hover {
  background: var(--bark);
  color: var(--white);
}
.feedback-alert-btn:active {
  transform: scale(0.97);
  background: linear-gradient(145deg, #aaa, #777);
}
#feedback-form input[type="checkbox"].agreement {
  appearance: none;
  -webkit-appearance: none;
  width: clamp(14px, 1.2vw, 28px);
  height: clamp(14px, 1.2vw, 28px);
  border: 1px solid var(--bark);
  border-radius: 3px;
  flex-shrink: 0;
  align-self: center;
  cursor: none;
  position: relative;
  transition: background 0.2s;
}
#feedback-form input[type="checkbox"].agreement:checked { background: var(--bark); }
#feedback-form input[type="checkbox"].agreement:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: clamp(9px, 0.8vw, 18px);
  line-height: 1;
}
.agreement-wrapper {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 28px);
  cursor: none;
}
.agreem {
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 34px);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--sand);
  line-height: 1.5;
}
.agree{
  color: var(--bark);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  transition: border-color .3s, color .3s;
}
.agree:hover {
  color: var(--white);
  border-color: var(--bark);
  text-decoration: none;
  font-weight: 400;
}
.contact.light .con-val-wrap { color: var(--stone); }
.contact.light .con-val-wrap:hover { color: var(--black); }
.contact.light .agreem { color: var(--black); }
.contact.light #feedback-form input[type="text"]::placeholder,
.contact.light #feedback-form input[type="tel"]::placeholder,
.contact.light #feedback-form input[type="email"]::placeholder,
.contact.light #feedback-form textarea::placeholder { color: var(--stone); }
.contact.light #feedback-form input[type="text"],
.contact.light #feedback-form input[type="tel"],
.contact.light #feedback-form input[type="email"],
.contact.light #feedback-form textarea {
  background: rgba(53, 60, 63, 0.05);
  border: 1px solid rgba(53, 60, 63, 0.2);
  color: var(--black); }
.contact.light .agree:hover {
  color: var(--stone);
  border-color: var(--bark);
}
.contact.light #feedback-form input[type="text"]:focus,
.contact.light #feedback-form input[type="tel"]:focus,
.contact.light #feedback-form input[type="email"]:focus,
.contact.light #feedback-form textarea:focus { border: 1px solid var(--stone); }
.contact.light .f-btn:hover { color: var(--stone); }
.f-field--error { border-bottom-color: #e05a2b !important; }
.f-field--error .f-label { color: #e05a2b; }
.f-hint {
  display: block;
  font-size: clamp(10px, 0.8vw, 18px);
  letter-spacing: 0.15em;
  color: #e05a2b;
  margin-top: 4px;
  min-height: 14px;
}
.f-field--ok { border-bottom-color: var(--bark) !important; }
#feedback-alert.active { animation: autoClose 4s ease forwards; }
@keyframes autoClose {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  80%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(50px); }
}
.contact.light .f-field--error .f-label { color: #c0391b; }
.contact.light .f-hint { color: #c0391b; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rd1 { transition-delay: 0.12s; }
.rd2 { transition-delay: 0.24s; }

@media (min-width:1001px) and (max-width:1600px) {
  .hero-word {
    font-size: clamp(82px, 7vw, 140px);
    line-height: 0.94;
  }
  .hero-meta-text {
    font-size: clamp(11px, 1vw, 16px);
    max-width: clamp(160px, 20vw, 300px);
  }
  .hero-cta { font-size: clamp(10px, 0.55vw, 13px); }
}
@media (min-width:601px) and (max-width:1000px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 72vw auto;
    min-height: unset;
    position: relative;
    padding-top: 52px;
  }
  .hero-left {
    order: -1;
    height: 72vw;
    max-height: 72vw;
    overflow: hidden;
    position: relative;
  }
  .hero-right {
    position: relative;
    margin-top: -43vw;
    border-left: none;
    border-top: none;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      var(--white) 90%,
      var(--white) 100%
    );
    padding: 2.5rem 1.5rem 2rem;
    justify-content: flex-start;
    z-index: 4;
  }
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-word { font-size: clamp(35px, 6vw, 80px); }
  .hero-meta {
    right: clamp(40px, 1vw, 60px);
    bottom: clamp(40px, 1vw, 60px);
  }
  .hero-meta-text {
    font-size: clamp(12px, 1.8vw, 18px);
    max-width: clamp(160px, 40vw, 320px);
  }
  .hero-cta:hover {
    color: var(--bark);
    border-color: var(--black);
  }
  .statement {
    padding: clamp(40px, 4vw, 80px) clamp(24px, 3vw, 60px);
    grid-template-columns: clamp(120px, 20vw, 260px) 1fr;
    gap: clamp(30px, 10vw, 120px);
  }
  .stmt-text {
    font-size: clamp(20px, 2.2vw, 36px);
    max-width: clamp(300px, 50vw, 900px);
    margin-bottom: 24px;
  }
  .sn-num { font-size: clamp(32px, 4vw, 60px); }
  .sn-label { font-size: clamp(8px, 0.55vw, 12px); }
  .stmt-numbers { gap: clamp(24px, 3vw, 60px); }
  .projects { padding: 0 clamp(20px, 3vw, 48px) clamp(20px, 3vw, 48px); }
  .proj-header {
    padding: clamp(28px, 3vw, 60px) 0 clamp(20px, 2.5vw, 48px);
    margin-bottom: clamp(24px, 3vw, 48px);
  }
  .proj-header h2 { font-size: clamp(11px, 1.2vw, 16px); }
  .grid {
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(10px, 1.5vw, 20px);
  }
  .pa { grid-column: span 4; }
  .pb { grid-column: span 2; }
  .pc { grid-column: span 2; }
  .pd { grid-column: span 4; }
  .pe { grid-column: span 3; }
  .pf { grid-column: span 3; }
  .pg { grid-column: span 2; }
  .ph { grid-column: span 4; }
  .proj-overlay h3 { font-size: clamp(13px, 1.8vw, 22px); }
  .proj-overlay p { font-size: clamp(9px, 1vw, 14px); }
  .proj-caption-title { font-size: clamp(12px, 1.5vw, 20px); }
  .proj-caption-meta { font-size: clamp(9px, 0.9vw, 14px); }
  .services { padding: clamp(32px, 3vw, 60px) 20px; }
  .svc-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: clamp(20px, 2vw, 40px);
  }
  .svc-title { font-size: clamp(40px, 6vw, 80px); }
  .svc-title br { display: none; }
  .svc-note {
    max-width: 70%;
    font-size: clamp(11px, 1.4vw, 18px);
  }
  .svc-item {
    grid-template-columns: clamp(24px, 2vw, 48px) 1fr clamp(100px, 12vw, 180px) clamp(16px, 1.5vw, 28px);
    gap: clamp(12px, 2vw, 40px);
    padding: clamp(16px, 2vw, 32px) 0 clamp(16px, 2vw, 32px) clamp(16px, 2vw, 32px);
  }
  .svc-name { font-size: clamp(16px, 2vw, 28px); }
  .svc-sub { font-size: clamp(9px, 0.9vw, 13px); }
  .svc-price { font-size: clamp(12px, 1.2vw, 20px); }
  .svc-price small { font-size: clamp(9px, 0.8vw, 13px); }
  .svc-n { font-size: clamp(12px, 1.2vw, 22px); }
  .contact { gap: clamp(40px, 5vw, 100px); }
  .f-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 400px;
    max-height: 700px;
    position: relative;
  }
  .hero-left {
    order: -1;
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 0;
  }
  .hero-left-overlay {
    background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.3) 60%,
      transparent 100%
    );
  }
  .hero-right {
    position: relative;
    z-index: 2;
    background: transparent;
    border-left: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 200px;
    padding-left: 20px;
  }
  .hero-word {
    font-size: clamp(44px, 13vw, 64px);
    color: var(--white);
  }
 .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 90svh;
    object-fit: cover;
    object-position: center top;
  }
  .hero-meta {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 24px;
    align-items: flex-end;
    z-index: 5;
  }
  .hero-meta-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-align: right;
    max-width: 100%;
  }
  .hero-cta {
    font-size: 13px;
    color: var(--white);
    border-bottom-color: var(--bark);
  }
  .hero-cta:hover { color: var(--bark); }
  .hero-left-accent {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    animation: accentLine 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .statement {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 20px;
  }
  .stmt-label { padding-top: 0; }
  .stmt-text {
    font-size: clamp(18px, 5vw, 28px);
    max-width: 100%;
    margin-bottom: 16px;
  }
  .sn-num { font-size: clamp(24px, 6vw, 40px); }
  .sn-label { font-size: clamp(9px, 2.5vw, 12px); }
  .stmt-numbers { gap: clamp(24px, 6vw, 48px); }
  .projects { padding: 0 20px clamp(40px, 8vw, 60px); }
  .proj-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 0 5px;
    margin-bottom: 10px;
  }
  .proj-header h2 { font-size: 11px; }
  .proj-header span { font-size: 10px; }
  .grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 2vw, 30px);
  }
  .pa, .pb, .pc, .pd, .pe, .pf, .pg, .ph { grid-column: span 1; }
  .proj-overlay h3 { font-size: 13px; }
  .proj-overlay p { font-size: 9px; }
  .proj-caption-title { font-size: 12px; }
  .proj-caption-meta {
    font-size: 9px;
    margin-top: 3px;
  }
  .svc-item {
    grid-template-columns: clamp(24px, 5vw, 40px) 1fr clamp(16px, 4vw, 24px);
    grid-template-rows: auto auto;
    gap: 8px 10px;
    padding: 12px 0 12px 12px;
  }
  .svc-n {
    grid-column: 1;
    grid-row: 1;
  }
  .svc-info {
    grid-column: 2;
    grid-row: 1;
  }
  .svc-price { display: none; }
  .svc-arr {
    grid-column: 3;
    grid-row: 1;
  }
  .svc-name { font-size: clamp(14px, 2vw, 22px); }
  .svc-sub { margin-top: 4px; }
  .svc-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
  }
  .svc-title { font-size: clamp(36px, 10vw, 56px); }
  .svc-note {
    max-width: 100%;
    font-size: clamp(12px, 3vw, 16px);
  }
  .services { padding: 28px 20px; }
  .quote-wrap { display: none; }
  .process { padding: clamp(30px, 2vw, 60px) clamp(24px, 3.5vw, 80px); }
  .steps {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .steps::-webkit-scrollbar { display: none; }
  .step {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
    padding: 16px;
    border: 1px solid var(--sand);
  }
  .test-grid { padding-bottom: 0; }
  .contact {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 60px);
    padding: clamp(20px, 1vw, 40px) clamp(20px, 5vw, 60px);
  }
  .con-title { font-size: clamp(36px, 10vw, 56px); }
  .con-title-wrap { margin-bottom: 0; }
  .reading-lamp { padding-left: clamp(60px, 10vw, 100px); }
  .con-form { order: 2; }
  .contact > .reveal:first-child { order: 1; }
  .f-row { grid-template-columns: 1fr; }
}