:root {
  --accent: #b00042;
  --accent-dark: #8d0035;
  --ink: #1b1b1b;
  --muted: #66615f;
  --line: #dedede;
  --soft: #f5f5f5;
  --quote: #929292;
  --white: #ffffff;
  --max-width: 1112px;
  --section-space: clamp(4rem, 8vw, 7rem);
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-nav {
  min-height: 64px;
  display: grid;
  place-items: center;
  background: var(--soft);
  border-bottom: 1px solid #eeeeee;
}

.site-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.brand {
  padding: 1.5rem 1rem 0;
  text-align: center;
}

.brand__name {
  display: block;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.brand__tagline {
  margin: 0.35rem 0 0;
  color: #595959;
  font-size: clamp(1.05rem, 3vw, 1.375rem);
  letter-spacing: 0.16em;
}

.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 var(--section-space);
  text-align: center;
}

.hero__mark,
.image-slot {
  position: relative;
  overflow: hidden;
  color: #7d7d7d;
  background:
    linear-gradient(135deg, rgba(176, 0, 66, 0.09), rgba(176, 0, 66, 0) 55%),
    #f4f4f4;
  border: 1px dashed #bebebe;
}

.hero__mark {
  width: min(100%, 458px);
  aspect-ratio: 458 / 500;
  display: grid;
  place-items: center;
  margin: 0 auto 2rem;
}

.hero__image {
  width: min(100%, 458px);
  height: auto;
  margin: 0 auto 2rem;
  object-fit: contain;
}

.image-slot::before,
.hero__mark::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(45deg, transparent 49.6%, rgba(176, 0, 66, 0.18) 50%, transparent 50.4%),
    linear-gradient(-45deg, transparent 49.6%, rgba(176, 0, 66, 0.18) 50%, transparent 50.4%);
  pointer-events: none;
}

.image-slot span,
.hero__mark span {
  z-index: 1;
  max-width: 85%;
  padding: 0.6rem 0.8rem;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.hero__prompt {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.125rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.button {
  min-width: 176px;
  padding: 0.95rem 1.5rem;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.section {
  padding: 0 0 var(--section-space);
}

.section-heading {
  margin: 0 0 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #999999;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: start;
  direction: ltr;
}

.testimonial-column {
  display: grid;
  gap: 0.5rem;
}

.testimonial-photo {
  width: 100%;
  height: auto;
  background: var(--soft);
}

.image-slot {
  display: grid;
  place-items: center;
  min-height: 9rem;
}

.image-slot--tall {
  aspect-ratio: 0.72;
}

.image-slot--portrait {
  aspect-ratio: 0.86;
}

.image-slot--landscape {
  aspect-ratio: 1.6;
}

.image-slot--wide {
  aspect-ratio: 2.2;
}

.video-list {
  display: grid;
  gap: clamp(3.5rem, 8vw, 7rem);
}

.video-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  direction: ltr;
}

.video-story:nth-child(even) .video-story__media {
  order: 2;
}

.video-story:nth-child(even) .video-story__copy {
  order: 1;
}

.video-story__media iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  background: #111111;
  box-shadow: var(--shadow);
}

.video-story__media--portrait iframe {
  aspect-ratio: 0.86;
}

.video-story__copy h3 {
  margin: 0 0 1.25rem;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.35;
}

.video-story__copy {
  direction: rtl;
}

.video-story__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.about-card {
  text-align: center;
}

.about-card .image-slot {
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
}

.about-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.35;
}

.about-card p {
  margin: 0;
  color: var(--muted);
}

.quote-block {
  width: min(100%, 1332px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 13vw, 12rem);
  color: var(--white);
  background: var(--quote);
  direction: ltr;
}

.quote-block::before {
  display: block;
  height: 2.75rem;
  content: "“";
  color: #d5d5d5;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.quote-block blockquote {
  margin: 1rem 0 0;
}

.quote-block p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.17;
}

.quote-block cite {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.75rem;
  font-style: normal;
}

.quote-block cite::before {
  width: 2.5rem;
  height: 2px;
  content: "";
  background: #d5d5d5;
}

.social-strip {
  overflow: hidden;
  padding: 1.1rem 0;
  color: var(--accent);
  border-bottom: 1px solid #ededed;
  direction: ltr;
}

.social-strip__track {
  width: max-content;
  display: flex;
  gap: 2.2rem;
  animation: social-scroll 28s linear infinite;
}

.social-strip a {
  text-decoration: none;
  font-size: clamp(1.35rem, 3vw, 2rem);
  white-space: nowrap;
}

.social-strip a:hover,
.social-strip a:focus-visible {
  text-decoration: underline;
}

@keyframes social-scroll {
  to {
    transform: translateX(-50%);
  }
}

.subscribe {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding-block: 3.5rem;
  direction: ltr;
}

.subscribe h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
}

.subscribe form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.subscribe input {
  min-height: 58px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 0;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.site-footer {
  padding: 1.5rem 0 3rem;
}

.site-footer__brand {
  margin: 0 0 2.5rem;
  font-weight: 700;
  text-align: center;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.875rem;
  direction: ltr;
}

.contact-main {
  padding-top: clamp(3.5rem, 7vw, 5rem);
}

.intro-copy {
  margin: -1.7rem 0 2.4rem;
  color: var(--muted);
}

.faq-list {
  width: min(100%, 720px);
  margin-inline: auto;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.3rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  color: var(--accent);
  content: "+";
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 0 1.5rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
  direction: ltr;
}

.contact-form,
.contact-details {
  direction: rtl;
}

.contact-form h3,
.contact-details h3 {
  margin: 0 0 1.2rem;
  font-size: 1.35rem;
  font-weight: 400;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.about-photo {
  display: block;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.field input {
  min-height: 52px;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.contact-details p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration: underline;
}

.hours {
  width: 100%;
  max-width: 330px;
  margin-top: 2rem;
  border-collapse: collapse;
  direction: ltr;
}

.hours caption {
  margin-bottom: 1rem;
  font-size: 1.35rem;
  text-align: right;
  direction: rtl;
}

.hours th,
.hours td {
  padding: 0.2rem 0.8rem 0.2rem 0;
  color: var(--muted);
  font-weight: 400;
  text-align: left;
}

:focus-visible {
  outline: 3px solid rgba(176, 0, 66, 0.3);
  outline-offset: 3px;
}

@media (max-width: 800px) {
  .testimonial-grid,
  .about-grid,
  .video-story,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    gap: 0.75rem;
  }

  .testimonial-column {
    display: contents;
  }

  .testimonial-grid .image-slot {
    min-height: 15rem;
    aspect-ratio: 4 / 3;
  }

  .video-story:nth-child(even) .video-story__media,
  .video-story:nth-child(even) .video-story__copy {
    order: initial;
  }

  .video-story__copy {
    text-align: center;
  }

  .about-grid {
    gap: 4rem;
  }

  .about-card .image-slot {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .contact-form,
  .contact-details {
    grid-column: 1;
  }

  .contact-form {
    grid-row: 1;
  }

  .contact-details {
    grid-row: 2;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .site-nav ul {
    gap: 1.2rem;
  }

  .brand__name {
    letter-spacing: 0.1em;
  }

  .hero__mark {
    width: min(86vw, 360px);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .quote-block {
    padding-inline: 1.25rem;
  }

  .subscribe {
    grid-template-columns: 1fr;
  }

  .subscribe form {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .subscribe input {
    border-right: 1px solid var(--line);
  }

  .site-footer__meta {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
