/* Gush Etzion Hearing — site styles
   Tokens taken from the original Claude Design "Classical" system export,
   simplified to plain CSS so no build step or runtime is needed. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Lora:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;600&display=swap');

:root {
  --color-bg: #fdfaf3;
  --color-surface: #f6f2e6;
  --color-text: #24292b;
  --color-accent: #1f9fbc;
  --color-accent-100: #eaf7fa;
  --color-accent-600: #1a8fa8;
  --color-accent-700: #16788e;
  --color-accent-800: #115f70;
  --color-divider: rgba(36, 41, 43, 0.14);

  --font-heading: "Cormorant Garamond", system-ui, sans-serif;
  --font-body: "Lora", system-ui, sans-serif;
  --font-he: "Frank Ruhl Libre", "Cormorant Garamond", serif;

  --radius-md: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
}
[dir="rtl"] body, .lang-he { font-family: var(--font-he); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 8px;
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: var(--font-he); }

p { margin: 0 0 14px; }
a { color: var(--color-accent-700); text-decoration: none; }
a:hover { color: var(--color-accent-600); text-decoration: underline; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: rgba(31, 159, 188, 0.25); }

.hr { height: 1px; border: 0; margin: 18px 0; background: var(--color-divider); width: 100%; }

/* — layout helpers — */
.page { display: flex; flex-direction: column; align-items: center; min-height: 100vh; }
.wrap { width: 100%; max-width: 940px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 640px; }

/* — header — */
header.site {
  position: sticky; top: 0; z-index: 5; width: 100%;
  background: rgba(253, 250, 243, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-divider);
}
header.site .wrap {
  padding-top: 12px; padding-bottom: 12px;
  display: flex; align-items: center; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--color-text); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 56px; width: auto; }
.brand span { font-family: var(--font-heading); font-weight: 600; font-size: 20px; line-height: 1.1; }
[dir="rtl"] .brand span { font-family: var(--font-he); }
.nav-link { font-size: 15px; }
.push-end { margin-inline-start: auto; }

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 600; font-size: 15px; line-height: 1.2;
  background: transparent; border: 1px solid transparent; border-radius: var(--radius-md);
  padding: 9px 18px;
}
[dir="rtl"] .btn { font-family: var(--font-he); }
.btn-primary { color: var(--color-accent); border-color: var(--color-accent); }
.btn-primary:hover { background: rgba(31, 159, 188, 0.12); text-decoration: none; }
.btn-primary:active { background: rgba(31, 159, 188, 0.22); }
.btn-block { width: 100%; margin-top: 8px; padding: 11px 20px; font-size: 16px; }
.btn-hero { padding: 13px 28px; font-size: 16px; background: rgba(253, 250, 243, 0.7); }

/* — language switch — */
.seg { display: inline-flex; overflow: hidden; border: 1px solid var(--color-divider); border-radius: var(--radius-md); flex: none; }
.seg button {
  padding: 7px 12px; font-size: 13px; font-family: var(--font-body); border: 0; cursor: pointer;
  background: transparent; color: inherit;
}
.seg button.he { font-family: var(--font-he); font-size: 14px; }
.seg button + button { border-inline-start: 1px solid var(--color-divider); }
.seg button:hover { background: rgba(36, 41, 43, 0.07); }
.seg button[aria-current="true"] { color: var(--color-accent); box-shadow: inset 0 0 0 1px var(--color-accent); }

/* — hero — */
.hero { width: 100%; position: relative; overflow: hidden; border-bottom: 1px solid var(--color-divider); }
.hero .bg {
  position: absolute; inset: 0; background-image: url('assets/audio.jpg');
  background-size: 190%; background-position: 22% 30%;
  filter: sepia(0.18) saturate(0.7); opacity: 0.5;
}
[dir="rtl"] .hero .bg { background-position: 78% 30%; }
.hero .fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(253,250,243,0.96), rgba(253,250,243,0.86) 55%, rgba(253,250,243,0.66));
}
[dir="rtl"] .hero .fade { background: linear-gradient(to left, rgba(253,250,243,0.96), rgba(253,250,243,0.86) 55%, rgba(253,250,243,0.66)); }
.hero .content {
  position: relative; padding: 72px 28px 84px;
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
[dir="rtl"] .hero .content { align-items: flex-start; text-align: right; }
.hero h1 { font-weight: 400; font-size: 46px; max-width: 15em; }
[dir="rtl"] .hero h1 { font-weight: 500; font-size: 44px; max-width: 17em; }
.hero p { font-size: 17px; line-height: 1.6; max-width: 26em; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 8px; }
.tel { font-variant-numeric: tabular-nums; }

/* — services list — */
main.landing { width: 100%; padding: 56px 28px 80px; display: flex; flex-direction: column; align-items: center; gap: 40px; text-align: center; }
.services { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; width: 100%; text-align: left; }
[dir="rtl"] .services { text-align: right; }
.services li { display: flex; flex-direction: column; gap: 5px; padding: 20px 0; border-bottom: 1px solid var(--color-divider); }
.services li:last-child { border-bottom: none; }
.services .title { font-family: var(--font-heading); font-weight: 600; font-size: 20px; }
[dir="rtl"] .services .title { font-family: var(--font-he); }
.services .desc { font-size: 16px; line-height: 1.6; opacity: 0.75; }
.byline { font-size: 16px; line-height: 1.7; opacity: 0.75; max-width: 30em; }

/* — form — */
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12px; color: rgba(36,41,43,0.7); }
.input {
  width: 100%; min-height: 36px; padding: 8px 10px; font: inherit; font-size: 14px;
  color: var(--color-text); background: transparent; border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
}
.input:hover { border-color: rgba(36,41,43,0.45); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 90px; resize: vertical; }
form.quote { width: 100%; max-width: 380px; display: flex; flex-direction: column; gap: 16px; text-align: left; }
[dir="rtl"] form.quote { text-align: right; }
.thanks { font-size: 17px; line-height: 1.6; max-width: 26em; }
.form-error { font-size: 14px; color: #b3261e; display: none; }

/* — footer — */
footer.site { width: 100%; margin: 0 auto; padding: 0 28px 48px; font-size: 13px; opacity: 0.6; text-align: center; }

/* — about page — */
main.about { width: 100%; padding: 64px 28px 88px; display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: start; }
@media (max-width: 620px) { main.about { grid-template-columns: 1fr; } }
.portrait-plate {
  width: 280px; height: 350px; border: 6px solid var(--color-surface); outline: 1px solid var(--color-divider);
  background: var(--color-surface); display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 13px; opacity: 0.55; padding: 18px;
}
@media (max-width: 620px) { .portrait-plate { width: 100%; } }
.about-body { display: flex; flex-direction: column; gap: 20px; text-align: left; }
[dir="rtl"] .about-body { text-align: right; }
.eyebrow { margin: 0; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-accent-700); }
[dir="rtl"] .eyebrow { letter-spacing: 0.02em; text-transform: none; }
.about-body h1 { font-weight: 400; font-size: 40px; }
[dir="rtl"] .about-body h1 { font-weight: 500; font-size: 38px; }

[hidden] { display: none !important; }
