:root {
  --red: #d62716;
  --yellow: #ffb319;
  --clay: #c78f7b;
  --ivory: #f3efe6;
  --paper: #faf8f2;
  --taupe: #a8927c;
  --almond: #d8c4ae;
  --ink: #2d211c;
  --muted: #74665d;
  --line: rgba(45, 33, 28, 0.2);
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(5rem, 10vw, 10rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Noto Sans Hebrew", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 999; inset: 0.75rem auto auto 1rem; transform: translateY(-180%); padding: 0.6rem 1rem; background: var(--paper); color: var(--ink); }
.skip-link:focus { transform: none; }
.section-pad { padding: var(--section) var(--pad); }
.kicker, .eyebrow { margin: 0 0 1.15rem; font-size: 0.76rem; font-weight: 750; letter-spacing: 0.14em; text-transform: uppercase; }
.kicker { color: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 0; font-weight: 520; letter-spacing: -0.055em; line-height: 0.98; }
h1 { font-size: clamp(3.55rem, 8.7vw, 8.9rem); }
h2 { font-size: clamp(2.7rem, 6vw, 6.2rem); }
h3 { line-height: 1.25; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.site-header { position: fixed; z-index: 100; top: 0; width: 100%; color: #fff; transition: background 250ms ease, color 250ms ease, transform 250ms ease; }
.site-header.scrolled { background: rgba(243,239,230,.96); color: var(--ink); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { max-width: var(--max); height: 6.25rem; margin: auto; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
.brand { justify-self: start; width: 9rem; filter: drop-shadow(0 1px 8px rgba(0,0,0,.25)); }
.site-header.scrolled .brand { filter: none; }
.primary-nav { display: flex; gap: clamp(1.25rem, 2.5vw, 2.75rem); align-items: center; font-size: 0.85rem; }
.primary-nav a { position: relative; padding: .5rem 0; }
.primary-nav a::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 200ms ease; }
.primary-nav a:hover::after { transform: scaleX(1); }
.header-cta { justify-self: end; display: inline-flex; gap: .7rem; align-items: center; padding: .78rem 1.1rem; border: 1px solid currentColor; font-size: .82rem; }
.menu-button { display: none; border: 0; background: transparent; color: inherit; }

.hero { position: relative; min-height: min(900px, 100svh); display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--ink); }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; animation: hero-in 1.4s cubic-bezier(.2,.7,.25,1) both; }
.hero-shade { background: linear-gradient(90deg, rgba(23,16,13,.08) 0%, rgba(23,16,13,.18) 35%, rgba(23,16,13,.78) 100%); }
.hero-content { position: relative; z-index: 2; width: min(54rem, 72vw); margin-inline-start: auto; padding: 10rem var(--pad) 7rem; animation: copy-in 900ms 180ms both; }
.eyebrow { display: flex; align-items: center; gap: .7rem; color: var(--yellow); }
.eyebrow span { width: 2.75rem; height: 2px; background: var(--yellow); }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-copy { max-width: 35rem; margin: 2rem 0 2.5rem; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 1rem; min-height: 3.5rem; padding: .85rem 1.35rem; border: 1px solid transparent; cursor: pointer; transition: transform 180ms ease, background 180ms ease, color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: #b91f12; }
.button-light { background: var(--paper); color: var(--ink); }
.text-link { border-bottom: 1px solid currentColor; padding-bottom: .2rem; }
.hero-location { position: absolute; z-index: 2; bottom: 2rem; right: var(--pad); margin: 0; font-size: .74rem; letter-spacing: .05em; }
.scroll-cue { position: absolute; z-index: 2; bottom: 2rem; left: var(--pad); display: flex; align-items: center; gap: .75rem; font-size: .7rem; }
.scroll-cue span { display: block; height: 1px; width: 4rem; background: currentColor; }

.intro { position: relative; max-width: var(--max); margin: auto; display: grid; grid-template-columns: .3fr 1.2fr .8fr; gap: clamp(2rem, 5vw, 6rem); overflow: hidden; }
.section-mark { font-size: .72rem; letter-spacing: .16em; padding-top: .7rem; color: var(--muted); }
.intro-title-wrap, .intro-copy { position: relative; z-index: 2; }
.intro-copy { max-width: 32rem; padding-top: 2rem; }
.intro-copy .lead { font-size: 1.35rem; line-height: 1.55; color: var(--ink); }
.intro-copy p:not(.lead) { color: var(--muted); }
.line-link { display: inline-flex; align-items: center; gap: 1rem; margin-top: 1rem; padding-bottom: .35rem; border-bottom: 1px solid var(--ink); font-weight: 650; }
.wash-line { position: absolute; width: 58%; left: 2%; bottom: 1.5rem; fill: none; stroke: var(--red); stroke-width: 8; stroke-linecap: round; opacity: .92; transform: rotate(-4deg); }
.wash-line path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.8s cubic-bezier(.18,.8,.25,1); }
.wash-line.draw path { stroke-dashoffset: 0; }

.services { background: var(--paper); }
.services > * { max-width: var(--max); margin-inline: auto; }
.section-head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 4rem; align-items: end; margin-bottom: clamp(3rem, 7vw, 6rem); }
.section-head > p { max-width: 29rem; margin: 0 0 .5rem; color: var(--muted); }
.service-editorial { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: auto auto auto; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-editorial > * { background: var(--paper); }
.service-large { grid-row: 1 / 4; display: grid; grid-template-columns: 1.25fr .75fr; min-height: 46rem; }
.service-large figure { margin: 0; position: relative; min-height: 34rem; overflow: hidden; }
.service-large img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
.service-large:hover img { transform: scale(1.025); }
.service-large figcaption { position: absolute; right: 1rem; bottom: 1rem; background: var(--paper); padding: .35rem .65rem; font-size: .68rem; }
.service-copy, .service-small { padding: clamp(1.5rem, 3vw, 3rem); }
.service-copy { display: flex; flex-direction: column; justify-content: flex-end; }
.service-copy h3, .service-small h3 { margin: .8rem 0 .55rem; font-size: clamp(1.6rem, 2.5vw, 2.6rem); font-weight: 550; }
.service-copy p, .service-small p { color: var(--muted); margin-bottom: 0; }
.service-index { font-size: .72rem; letter-spacing: .12em; color: var(--red); }
.service-small { min-height: 14rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.service-small > * { position: relative; z-index: 2; }
.service-clay { background: var(--clay); }
.service-clay p { color: rgba(45,33,28,.75); }
.service-clay svg { position: absolute; width: 52%; left: 1.5rem; bottom: .8rem; fill: none; stroke: rgba(243,239,230,.55); stroke-width: 5; }
.service-ivory { background: var(--ivory); }
.fabric-pattern { position: absolute; inset: 0; opacity: .15; background-image: repeating-linear-gradient(35deg, transparent 0 6px, var(--taupe) 7px 8px); }
.service-note { min-height: 9rem; padding: 1.6rem 2rem; display: flex; gap: 1rem; align-items: center; }
.service-note p { margin: 0; }
.note-dot { flex: 0 0 auto; width: .75rem; height: .75rem; border-radius: 50%; background: var(--yellow); }

.process { display: grid; grid-template-columns: 1fr 1fr; min-height: 56rem; background: var(--almond); }
.process-image-wrap { position: relative; overflow: hidden; }
.process-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.image-label { position: absolute; right: 1rem; bottom: 1rem; background: var(--ivory); padding: .6rem .9rem; font-size: .72rem; }
.process-content { display: flex; flex-direction: column; justify-content: center; }
.process-content h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.steps { list-style: none; padding: 0; margin: 3.5rem 0 0; }
.steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem; padding: 1.25rem 0; border-top: 1px solid rgba(45,33,28,.3); }
.steps li:last-child { border-bottom: 1px solid rgba(45,33,28,.3); }
.steps li > span { color: var(--red); font-size: .7rem; letter-spacing: .12em; padding-top: .2rem; }
.steps h3 { margin: 0 0 .25rem; font-size: 1.1rem; }
.steps p { margin: 0; color: rgba(45,33,28,.72); font-size: .92rem; }

.principles { max-width: var(--max); margin: auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; }
.principles-title h2 { font-size: clamp(2.8rem, 5vw, 5.25rem); }
.principle-list { border-top: 1px solid var(--line); }
.principle-list article { display: grid; grid-template-columns: 3rem .7fr 1fr; gap: 1.5rem; align-items: baseline; padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
.principle-list article > span { width: 2rem; height: 2rem; display: grid; place-items: center; background: var(--yellow); border-radius: 50%; font-weight: 700; }
.principle-list h3 { margin: 0; font-size: 1.15rem; }
.principle-list p { margin: 0; color: var(--muted); }

.area { padding-inline: var(--pad); display: grid; grid-template-columns: .75fr 1.25fr; max-width: var(--max); margin: auto; }
.area-card { position: relative; z-index: 2; background: var(--red); color: #fff; padding: clamp(2.25rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.area-card .kicker { color: var(--yellow); }
.area-card h2 { font-size: clamp(3rem, 5.5vw, 5.7rem); }
.area-card > p:not(.kicker) { margin: 2rem 0; max-width: 30rem; }
.area-card .button { align-self: start; }
.area-map { position: relative; min-height: 38rem; background: var(--taupe); overflow: hidden; }
.area-map::before { content: ""; position: absolute; inset: 0; opacity: .15; background: radial-gradient(circle at center, transparent 0 2px, var(--ivory) 2px 3px, transparent 3px 13px); background-size: 26px 26px; }
.area-map svg { position: absolute; inset: 5%; width: 90%; height: 90%; fill: none; }
.map-road { stroke: rgba(243,239,230,.85); stroke-width: 3; }
.map-road.secondary { stroke-width: 1.5; stroke-dasharray: 7 8; }
.map-ring { stroke: var(--yellow); stroke-width: 2; stroke-dasharray: 4 7; }
.map-dot { fill: var(--red); stroke: var(--ivory); stroke-width: 4; }
.place { position: absolute; padding: .35rem .7rem; background: var(--ivory); font-size: .74rem; }
.place-one { top: 41%; right: 33%; }
.place-two { top: 26%; left: 18%; }
.place-three { bottom: 14%; right: 15%; background: transparent; color: var(--ivory); letter-spacing: .08em; }

.faq { max-width: var(--max); margin: auto; display: grid; grid-template-columns: .65fr 1.35fr; gap: 10vw; }
.faq-intro h2 { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.faq-intro > p:last-child { color: var(--muted); max-width: 25rem; margin-top: 2rem; }
.accordion { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 6rem; padding: 1rem 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border: 0; background: transparent; color: var(--ink); text-align: right; cursor: pointer; font-weight: 560; }
.faq-item i { width: 1.25rem; height: 1.25rem; position: relative; flex: 0 0 auto; }
.faq-item i::before, .faq-item i::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: currentColor; transition: transform 250ms ease; }
.faq-item i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms ease; }
.faq-answer[hidden] { display: none; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); max-width: 43rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 1.5rem; }

.quote { position: relative; background: var(--ivory); color: var(--ink); display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; overflow: hidden; border-block: 1px solid var(--line); }
.quote::after { content: ""; position: absolute; width: 28rem; height: 28rem; border: 1px solid rgba(255,179,25,.32); border-radius: 50%; left: -12rem; bottom: -15rem; box-shadow: 0 0 0 4rem rgba(255,179,25,.05), 0 0 0 8rem rgba(255,179,25,.03); }
.quote-heading, .quote-form, .quote-result { position: relative; z-index: 2; }
.quote-heading h2 { font-size: clamp(3rem, 5.4vw, 5.8rem); }
.quote-heading > p:not(.kicker):not(.draft-notice) { margin-top: 2rem; color: var(--muted); font-size: 1.125rem; line-height: 1.75; }
.quote .kicker { font-size: .875rem; letter-spacing: .04em; color: #b91f12; }
.quote .line-link { font-size: 1.125rem; line-height: 1.7; flex-wrap: wrap; }
.quote :focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.draft-notice { display: flex; align-items: center; gap: .7rem; margin-top: 2rem; font-size: .8rem; color: var(--yellow); }
.draft-notice span { width: 1.5rem; height: 1.5rem; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-weight: 700; }
.quote-form { display: flex; flex-direction: column; gap: 1.6rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; }
.field label, fieldset legend { margin-bottom: .65rem; font-size: 1rem; font-weight: 650; line-height: 1.6; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; min-height: 3.25rem; border: 1px solid var(--muted); border-radius: 0; padding: .75rem; background: var(--paper); color: var(--ink); font-size: 1.125rem; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 1; }
.field textarea { resize: vertical; }
.field select { color-scheme: light; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--red); outline-offset: 3px; border-color: var(--red); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); }
.field-hint, .field-error { min-height: 1.25rem; margin-top: .5rem; font-size: .875rem; line-height: 1.6; }
.field-hint { color: var(--muted); }
.field-error { color: #aa2014; font-weight: 600; }
.field-error:empty { display: none; }
fieldset { border: 0; padding: 0; margin: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; }
.choice-grid span { min-height: 3.5rem; display: grid; place-items: center; border: 1px solid var(--muted); background: var(--paper); font-size: 1.125rem; font-weight: 600; transition: background 180ms ease, color 180ms ease, border-color 180ms ease; }
.choice-grid input:checked + span { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.choice-grid input:focus-visible + span { outline: 3px solid var(--red); outline-offset: 3px; }
.form-submit { align-self: start; margin-top: .5rem; border: 0; }
.form-privacy { margin: -.5rem 0 0; font-size: .875rem; line-height: 1.7; color: var(--muted); }
.quote-result { grid-column: 2; padding: 2rem; background: var(--paper); color: var(--ink); border: 1px solid var(--muted); }
.quote-result h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.quote-result pre { margin: 0 0 1.25rem; white-space: pre-wrap; font: inherit; line-height: 1.7; }
.quote-result .button { background: var(--paper); color: var(--ink); border-color: var(--muted); margin-block: .25rem; }
.quote-result #whatsapp-quote { background: var(--red); color: #fff; border-color: var(--red); }
#copy-status { margin: .75rem 0 0; min-height: 1.4rem; font-size: .875rem; color: var(--muted); }

.site-footer { max-width: var(--max); margin: auto; padding: 4rem var(--pad) 2rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; align-items: end; }
.footer-brand img { width: 10rem; margin-bottom: 1rem; }
.footer-brand p, .footer-meta { font-size: .78rem; color: var(--muted); }
.site-footer nav { display: flex; gap: 1.4rem; justify-content: center; font-size: .78rem; }
.footer-meta { text-align: left; }
.footer-meta p { margin-bottom: .25rem; }

@keyframes hero-in { from { opacity: 0; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }
@keyframes copy-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; height: 5rem; }
  .brand { width: 7.5rem; }
  .header-cta { display: none; }
  .menu-button { justify-self: end; display: flex; align-items: center; gap: .75rem; padding: .65rem 0; cursor: pointer; }
  .menu-icon { width: 1.6rem; height: 1rem; display: flex; flex-direction: column; justify-content: space-between; }
  .menu-icon i { display: block; width: 100%; height: 1px; background: currentColor; transition: transform 200ms ease; }
  .menu-button[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 5rem 0 0; display: flex; flex-direction: column; justify-content: center; gap: 2rem; background: var(--ivory); color: var(--ink); font-size: 1.6rem; transform: translateX(100%); opacity: 0; visibility: hidden; transition: transform 280ms ease, opacity 220ms ease, visibility 280ms; }
  .primary-nav.open { transform: none; opacity: 1; visibility: visible; }
  .site-header:not(.scrolled):has(.primary-nav.open) { color: var(--ink); background: var(--ivory); }
  .site-header:not(.scrolled):has(.primary-nav.open) .brand { filter: none; }
  .intro { grid-template-columns: .25fr 1fr; }
  .intro-copy { grid-column: 2; }
  .wash-line { width: 78%; }
  .service-large { grid-template-columns: 1fr; }
  .service-large figure { min-height: 28rem; }
  .service-copy { min-height: 14rem; }
  .process { grid-template-columns: 1fr; }
  .process-image-wrap { min-height: 32rem; }
  .principles { grid-template-columns: 1fr; gap: 4rem; }
  .area { grid-template-columns: 1fr; }
  .area-map { min-height: 28rem; }
  .faq { grid-template-columns: .6fr 1.4fr; gap: 6vw; }
  .quote { gap: 5vw; }
}

@media (max-width: 700px) {
  :root { --pad: 1.25rem; --section: 5.5rem; }
  h1 { font-size: clamp(3.35rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .hero { min-height: 47rem; align-items: flex-end; }
  .hero-image { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(23,16,13,.9) 0%, rgba(23,16,13,.48) 55%, rgba(23,16,13,.18) 100%); }
  .hero-content { width: 100%; padding: 8rem var(--pad) 8.25rem; }
  .hero-copy { font-size: 1rem; margin: 1.5rem 0 2rem; }
  .hero-actions { gap: 1.25rem; }
  .hero-location { bottom: 2rem; max-width: 75%; }
  .scroll-cue { display: none; }
  .intro { grid-template-columns: 1fr; gap: 2rem; }
  .section-mark { display: none; }
  .intro-copy { grid-column: 1; padding-top: 0; }
  .wash-line { width: 92%; left: -20%; bottom: .5rem; opacity: .45; }
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-editorial { display: block; background: transparent; border: 0; }
  .service-editorial > * { border-bottom: 1px solid var(--line); }
  .service-large { display: block; min-height: 0; }
  .service-large figure { height: 31rem; min-height: 0; }
  .service-copy { min-height: 13rem; }
  .service-small { min-height: 13rem; }
  .service-note { min-height: 8rem; }
  .process-image-wrap { min-height: 26rem; }
  .principle-list article { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .principle-list article p { grid-column: 2; }
  .area { padding-inline: 0; }
  .area-card { margin: 0 var(--pad); }
  .area-map { margin-top: -1.25rem; z-index: -1; }
  .faq { grid-template-columns: 1fr; gap: 3rem; }
  .faq-item button { min-height: 5rem; }
  .quote { grid-template-columns: 1fr; gap: 3.5rem; }
  .field-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .quote-result { grid-column: 1; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer nav { justify-content: flex-start; flex-wrap: wrap; }
  .footer-meta { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
