* {
  box-sizing: border-box;
}
html {
  background: #151b19;
  color: #f6f4ec;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  margin: 0;
}
.scene {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 22, 20, 0.12),
      rgba(15, 22, 20, 0.3) 38%,
      #151b19 72%
    ),
    url("/assets/garage-mc20-bright.webp") left center/74% auto no-repeat;
  pointer-events: none;
}
.page {
  height: 100svh;
  height: 100dvh;
  min-height: 540px;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: max(28px, env(safe-area-inset-top))
    max(5vw, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom))
    max(5vw, env(safe-area-inset-left));
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: ltr;
}
.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.brand > span {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-light {
  font-weight: 400;
}
.brand i {
  width: 7px;
  height: 7px;
  background: #ccdb9c;
  display: block;
  margin-left: 3px;
}
.brand small {
  font-size: 11px;
  letter-spacing: 2px;
  color: #c1c6bd;
}
nav {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid #ffffff29;
  border-radius: 30px;
}
nav button {
  border: 0;
  background: none;
  color: #c8cec6;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  font-size: 12px;
  border-radius: 24px;
}
nav button[aria-pressed="true"] {
  background: #d6e3b1;
  color: #1b251d;
}
main {
  display: flex;
  align-items: center;
  position: relative;
  direction: rtl;
}
.content {
  width: 48%;
  max-width: 650px;
  text-align: start;
  direction: rtl;
}
html[dir="ltr"] .content {
  direction: ltr;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d0d7c6;
  margin: 0 0 20px;
}
.eyebrow > span:first-child {
  width: 25px;
  height: 2px;
  background: #c8d99e;
}
h1 {
  font-size: clamp(38px, 4.5vw, 76px);
  line-height: 1.07;
  letter-spacing: -2px;
  font-weight: 500;
  margin: 0;
}
h1 em {
  font-style: normal;
  color: #d6e3b1;
}
.intro {
  font-size: 16px;
  line-height: 1.5;
  color: #c5ccc1;
  margin: 20px 0;
}
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  list-style: none;
  padding: 0;
  margin: 24px 0 12px;
  font-size: 14px;
}
.services li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.services li:before {
  content: "+";
  font-size: 16px;
  color: #c6d69b;
}
.exclusion {
  font-size: 11px;
  color: #aeb7aa;
  margin: 0 0 25px;
}
.actions {
  display: flex;
  gap: 12px;
}
.actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 22px;
  min-height: 52px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.primary {
  background: #d6e3b1;
  color: #1c281b;
}
.secondary {
  border: 1px solid #ffffff50;
  color: #f6f4ec;
}
.actions a:hover {
  filter: brightness(1.12);
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #e1eea7;
  outline-offset: 5px;
}
.photo-caption {
  position: absolute;
  left: 0;
  bottom: 26px;
  direction: ltr;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.photo-caption span {
  font-size: 11px;
  letter-spacing: 3px;
}
.photo-caption small {
  font-size: 9px;
  letter-spacing: 2px;
  color: #a9b2a5;
}
footer {
  border-top: 1px solid #ffffff29;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
address {
  font-style: normal;
  display: flex;
  gap: 20px;
  align-items: center;
}
footer a {
  color: inherit;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.divider {
  color: #64705f;
}
.footer-meta {
  display: flex;
  gap: 24px;
  color: #aeb7aa;
  font-size: 10px;
}
@media (min-width: 761px) and (max-height: 730px) {
  .page {
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  h1 {
    font-size: clamp(36px, 4vw, 56px);
  }
  .eyebrow {
    margin-bottom: 12px;
  }
  .intro {
    margin: 12px 0;
  }
  .services {
    margin-top: 16px;
    gap: 8px 16px;
  }
  .exclusion {
    margin-bottom: 16px;
  }
  footer {
    padding-top: 14px;
  }
}
@media (max-width: 760px) {
  .page {
    padding: max(18px, env(safe-area-inset-top))
      max(24px, env(safe-area-inset-right))
      max(18px, env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
    min-height: 540px;
  }
  .scene {
    background:
      linear-gradient(
        180deg,
        #151b1933,
        #151b1940 18%,
        #151b19e8 43%,
        #151b19 65%
      ),
      url("/assets/garage-mc20-bright.webp") center top/auto 55% no-repeat;
  }
  .brand > span {
    font-size: 21px;
  }
  .brand small {
    font-size: 9px;
  }
  main {
    align-items: flex-end;
    padding-bottom: 25px;
  }
  .content {
    width: 100%;
    max-width: none;
  }
  h1 {
    font-size: clamp(36px, 9.5vw, 56px);
    letter-spacing: -1px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .intro {
    font-size: 14px;
    margin: 14px 0;
  }
  .services {
    font-size: 12px;
    gap: 10px 12px;
    margin: 18px 0 10px;
  }
  .exclusion {
    margin-bottom: 20px;
    font-size: 10px;
  }
  .actions a {
    flex: 1;
    padding: 0 16px;
    gap: 12px;
    min-height: 48px;
    font-size: 13px;
  }
  .photo-caption {
    display: none;
  }
  footer {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
  }
  address {
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
  }
  .divider {
    display: none;
  }
  .footer-meta {
    justify-content: space-between;
    font-size: 9px;
  }
  nav button {
    min-width: 40px;
    min-height: 44px;
  }
}
@media (max-width: 760px) and (max-height: 720px) {
  .page {
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  main {
    padding-bottom: 16px;
  }
  .eyebrow {
    margin-bottom: 8px;
  }
  h1 {
    font-size: 36px;
  }
  .intro {
    margin: 10px 0;
    font-size: 12px;
  }
  .services {
    margin: 12px 0 8px;
    gap: 8px 10px;
  }
  .exclusion {
    margin-bottom: 13px;
  }
  footer {
    padding-top: 12px;
    gap: 10px;
  }
}
@media (max-height: 540px) and (min-width: 600px) {
  .page {
    min-height: 320px;
    padding-top: max(10px, env(safe-area-inset-top));
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .brand small,
  .eyebrow,
  .intro,
  .exclusion,
  .photo-caption {
    display: none;
  }
  main {
    align-items: center;
    padding: 8px 0;
  }
  .content {
    width: 56%;
  }
  h1 {
    font-size: 30px;
  }
  .services {
    font-size: 11px;
    gap: 5px 12px;
    margin: 12px 0;
  }
  .actions a {
    min-height: 44px;
    font-size: 12px;
    padding: 0 14px;
  }
  .scene {
    background:
      linear-gradient(90deg, #151b1920, #151b19 70%),
      url("/assets/garage-mc20-bright.webp") left center/70% auto no-repeat;
  }
  footer {
    flex-direction: row;
    padding-top: 10px;
    font-size: 10px;
  }
  .footer-meta {
    gap: 12px;
  }
  address {
    font-size: 11px;
  }
}

.hours {
  font-size: 12px;
  line-height: 1.6;
  color: #d9dfd1;
  margin: 0 0 20px;
}
.exclusion {
  margin-bottom: 12px;
}
@media (max-width: 760px) {
  .hours {
    font-size: 11px;
    margin-bottom: 15px;
  }
}
@media (max-height: 720px) {
  .hours {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .exclusion {
    margin-bottom: 8px;
  }
}
@media (max-height: 540px) and (min-width: 600px) {
  .hours {
    margin-bottom: 7px;
  }
}

@media (max-width: 760px) {
  address {
    flex-wrap: wrap;
  }
  address a[href^="mailto:"] {
    flex-basis: 100%;
    text-align: start;
    font-size: 12px;
  }
}

.actions button {
  border: 0;
  font: inherit;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  padding: 0 22px;
  min-height: 52px;
}
.actions {
  gap: 8px;
}
.actions a {
  gap: 12px;
  padding: 0 16px;
}
.actions button,
.actions a {
  white-space: nowrap;
}
.actions .secondary {
  font-size: 12px;
}
#contact-dialog {
  width: min(520px, calc(100vw - 32px));
  max-height: calc(
    100dvh - max(32px, env(safe-area-inset-top)) -
      max(32px, env(safe-area-inset-bottom))
  );
  overflow: auto;
  background: #1c2521;
  color: #f6f4ec;
  border: 1px solid #66745b;
  border-radius: 12px;
  padding: 24px;
  font-size: 14px;
}
#contact-dialog::backdrop {
  background: #07100acc;
  backdrop-filter: blur(5px);
}
.contact-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-head h2 {
  font-size: 26px;
  margin: 0;
}
.contact-head button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #73816b;
  background: transparent;
  color: inherit;
  border-radius: 6px;
  font-size: 26px;
  cursor: pointer;
}
#contact-form label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}
.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
#contact-form input,
#contact-form textarea {
  min-width: 0;
  width: 100%;
  background: #101914;
  color: #fff;
  border: 1px solid #718168;
  border-radius: 5px;
  padding: 12px;
  font: inherit;
  font-size: 16px;
}
#contact-form textarea {
  resize: vertical;
}
#contact-form .contact-hint {
  font-size: 12px;
  color: #bbc8b1;
  line-height: 1.5;
  margin: 10px 0;
}
#contact-form .honey {
  position: absolute;
  inset-inline-start: -10000px;
  visibility: hidden;
}
#contact-form button[type="submit"] {
  border: 0;
  border-radius: 5px;
  min-height: 48px;
  padding: 0 28px;
  cursor: pointer;
  font: inherit;
  font-weight: bold;
}
#contact-form button:disabled {
  opacity: 0.5;
  cursor: wait;
}
#contact-status {
  line-height: 1.5;
  color: #d6e3b1;
}
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #d6e3b1;
  outline-offset: 2px;
}
@media (max-width: 760px) {
  .actions button {
    flex: 1;
    font-size: 12px;
    padding: 0 10px;
    min-height: 48px;
  }
  .actions a {
    flex: initial;
    padding: 0 10px;
    font-size: 11px;
    gap: 5px;
  }
  .actions a span[aria-hidden] {
    display: none;
  }
  #contact-dialog {
    padding: 18px;
  }
}
@media (max-height: 620px) and (max-width: 760px) {
  main {
    padding-bottom: 12px;
  }
  .services {
    gap: 6px 10px;
    margin-top: 8px;
  }
  .intro {
    margin: 7px 0;
  }
  .hours {
    margin-bottom: 8px;
  }
  .eyebrow {
    display: none;
  }
  footer {
    gap: 8px;
    padding-top: 10px;
  }
  h1 {
    font-size: 33px;
  }
}
@media (max-height: 540px) and (min-width: 600px) {
  .actions button {
    min-height: 44px;
    font-size: 12px;
  }
}

.specialization {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-block: 1px solid #ffffff24;
  padding: 10px 0;
}
.specialization p {
  margin: 0;
  max-width: 230px;
  font-size: 12px;
  line-height: 1.4;
  color: #d6e3b1;
}
.brand-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.brand-logos img {
  object-fit: contain;
}
.brand-logos .mono {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.intro {
  margin: 14px 0;
}
.services {
  margin-top: 16px;
}
@media (max-width: 760px) {
  .specialization {
    gap: 10px;
    padding: 8px 0;
  }
  .specialization p {
    font-size: 10px;
    max-width: 135px;
  }
  .brand-logos {
    gap: 12px;
  }
  .brand-logos img {
    width: 34px;
    height: 34px;
  }
  .brand-logos .fiat {
    width: 38px;
    height: 30px;
  }
  .brand-logos .maserati {
    width: 70px;
    height: 32px;
  }
  .services {
    font-size: 11px;
  }
}
@media (max-height: 620px) and (max-width: 760px) {
  h1 {
    font-size: 28px;
  }
  .intro {
    margin: 7px 0;
    font-size: 11px;
  }
  .specialization {
    padding: 5px 0;
  }
  .services {
    margin-top: 8px;
    gap: 4px 10px;
  }
}
@media (max-height: 540px) and (min-width: 600px) {
  .specialization {
    position: absolute;
    left: 0;
    bottom: 16px;
    width: 37%;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .specialization p {
    font-size: 10px;
  }
  .brand-logos img {
    height: 34px;
  }
  .intro {
    display: block;
    font-size: 10px;
    margin: 5px 0;
  }
  h1 {
    font-size: 26px;
  }
  .services {
    margin: 7px 0;
  }
}

nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #c8cec6;
  min-width: 44px;
  min-height: 44px;
  font-size: 12px;
  border-radius: 24px;
}
nav a[aria-current="page"] {
  background: #d6e3b1;
  color: #1b251d;
}
.actions button.secondary {
  border: 1px solid #ffffff50;
  background: transparent;
  color: #f6f4ec;
  font-size: 12px;
  padding: 0 16px;
}
.phone-entry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
address {
  flex-wrap: wrap;
  column-gap: 18px;
  row-gap: 8px;
}
#phone-dialog {
  width: min(420px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  background: #1c2521;
  color: #f6f4ec;
  border: 1px solid #66745b;
  border-radius: 12px;
  padding: 24px;
}
#phone-dialog::backdrop {
  background: #07100acc;
  backdrop-filter: blur(5px);
}
#phone-dialog h2 {
  font-size: 22px;
}
.phone-options {
  display: flex;
  gap: 12px;
}
.phone-options a {
  flex: 1;
  padding: 16px;
  text-align: center;
  border: 1px solid #d6e3b1;
  border-radius: 5px;
  color: #d6e3b1;
  text-decoration: none;
}
@media (max-width: 760px) {
  nav a {
    min-width: 40px;
  }
  address > [data-text="address"] {
    flex-basis: 100%;
  }
  address {
    font-size: 11px;
  }
  .actions button.secondary {
    padding: 0 10px;
    font-size: 11px;
    flex: initial;
  }
}
@media (max-height: 620px) and (max-width: 760px) {
  h1 {
    font-size: 25px;
  }
  .intro {
    font-size: 10px;
    line-height: 1.4;
  }
  footer {
    gap: 6px;
  }
  address {
    row-gap: 5px;
  }
}
@media (max-height: 540px) and (min-width: 600px) {
  address {
    max-width: 70%;
    gap: 6px 14px;
  }
  address > [data-text="address"] {
    flex-basis: auto;
  }
}

/* Shared rows keep both contact columns aligned, including Hebrew RTL. */
address.contact-grid {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-areas: "address office" "email michael";
  gap: 8px 32px;
  align-items: baseline;
  justify-content: space-between;
  line-height: 1.4;
}
.contact-address {
  grid-area: address;
}
.contact-email {
  grid-area: email;
}
.office-phone {
  grid-area: office;
}
.michael-phone {
  grid-area: michael;
}
.contact-grid .phone-entry {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
address.contact-grid .contact-email {
  font-size: inherit;
  text-align: start;
}
@media (max-width: 760px) {
  address.contact-grid {
    width: 100%;
    max-width: none;
    gap: 8px 12px;
    font-size: 11px;
  }
  .contact-grid .phone-entry {
    gap: 6px;
  }
}
@media (max-width: 350px) {
  address.contact-grid {
    gap: 7px 8px;
    font-size: 10px;
  }
  .contact-grid .phone-entry {
    gap: 4px;
  }
}
@media (max-height: 540px) and (min-width: 600px) {
  address.contact-grid {
    gap: 5px 20px;
    font-size: 10px;
  }
}
