:root {
  --edc-bg: #f9f9f9;
  --edc-surface: #f9f9f9;
  --edc-surface-low: #f3f3f3;
  --edc-surface-mid: #eeeeee;
  --edc-ink: #1a1c1c;
  --edc-black: #000000;
  --edc-muted: #646464;
  --edc-soft: #858383;
  --edc-line: rgba(196, 199, 199, 0.45);
  --edc-margin: clamp(24px, 5.55vw, 80px);
  --edc-gap: clamp(20px, 2.2vw, 32px);
  --edc-section: clamp(88px, 11.1vw, 160px);
  --edc-display: clamp(48px, 5.84vw, 84px);
  --edc-headline: clamp(34px, 3.34vw, 48px);
  --edc-body: clamp(15px, 1.25vw, 18px);
  --edc-max: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--edc-bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--edc-bg);
  color: var(--edc-ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.edc-menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  border-radius: 0;
  font: inherit;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
blockquote {
  margin-top: 0;
}

::selection {
  background: #000;
  color: #fff;
}

.content-shell {
  width: min(100%, var(--edc-max));
  margin-inline: auto;
  padding-inline: var(--edc-margin);
}

.narrow-shell {
  width: min(100%, 1000px);
  margin-inline: auto;
  padding-inline: var(--edc-margin);
}

.eyebrow {
  color: var(--edc-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--edc-gap);
  width: 100%;
  min-height: 88px;
  padding: 24px var(--edc-margin);
  border-bottom: 1px solid var(--edc-line);
  background: rgba(249, 249, 249, 0.97);
  backdrop-filter: blur(12px);
  transition: min-height 350ms ease, padding 350ms ease, background 350ms ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-compact {
  min-height: 72px;
  padding-block: 16px;
}

.site-logo {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.35vw, 48px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.site-header--editorial .site-logo {
  font-size: clamp(44px, 5.84vw, 84px);
}

.site-header--editorial {
  min-height: 136px;
  padding-block: 30px;
}

.site-header--editorial.is-compact {
  min-height: 82px;
  padding-block: 18px;
}

.site-header--editorial.is-compact .site-logo {
  font-size: clamp(38px, 3.35vw, 48px);
}

.desktop-navigation {
  justify-self: end;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: var(--edc-gap);
}

.primary-menu a {
  display: block;
  padding-block: 4px;
  border-bottom: 1px solid transparent;
  color: var(--edc-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 250ms ease, opacity 250ms ease, border-color 250ms ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .is-current > a {
  border-color: currentColor;
  color: var(--edc-black);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 34px;
  height: 34px;
  padding: 7px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle--always {
  display: grid;
  align-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin-inline: auto;
  background: var(--edc-black);
}

/* Fullscreen menu */
.overlay-navigation {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-content: center;
  gap: 56px;
  padding: 72px 24px;
  overflow-y: auto;
  background: var(--edc-bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 450ms ease, visibility 450ms ease, transform 450ms ease;
}

.overlay-navigation.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.overlay-close {
  position: absolute;
  top: 28px;
  right: var(--edc-margin);
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.admin-bar .overlay-close {
  top: 60px;
}

.overlay-close span {
  position: absolute;
  left: 8px;
  top: 18px;
  width: 24px;
  height: 1px;
  background: var(--edc-black);
}

.overlay-close span:first-child {
  transform: rotate(45deg);
}

.overlay-close span:last-child {
  transform: rotate(-45deg);
}

.overlay-brand {
  text-align: center;
}

.overlay-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.overlay-kicker {
  margin-top: 12px;
  color: var(--edc-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.overlay-menu-list {
  display: grid;
  gap: 18px;
  text-align: center;
}

.overlay-menu-list a {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.45;
  transition: opacity 250ms ease, letter-spacing 400ms ease;
}

.overlay-menu-list a:hover,
.overlay-menu-list .current-menu-item > a,
.overlay-menu-list .current_page_item > a,
.overlay-menu-list .is-current > a {
  opacity: 1;
  letter-spacing: 0.05em;
}

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px var(--edc-margin);
  border-top: 1px solid var(--edc-line);
  background: var(--edc-surface);
}

.site-footer__copyright,
.site-footer__social a {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--edc-gap);
  color: var(--edc-muted);
}

.site-footer__social a:hover {
  color: var(--edc-black);
}

/* Reveal animation */
.reveal {
  opacity: 1;
  transform: none;
}

.edc-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.edc-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Home */
.hero-slider {
  position: relative;
  height: calc(100svh - 88px);
  min-height: 560px;
  overflow: hidden;
  background: #151719;
}

.hero-slider__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), visibility 1.2s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-slide__content {
  position: absolute;
  left: var(--edc-margin);
  bottom: clamp(64px, 12vh, 116px);
  z-index: 2;
  width: min(860px, calc(100% - (2 * var(--edc-margin))));
  color: #fff;
}

.hero-slide__content h1 {
  max-width: 900px;
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--edc-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-slide.is-active .hero-slide__content > * {
  animation: edc-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-slide.is-active .hero-slide__content h1 {
  animation-delay: 100ms;
}

@keyframes edc-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.hero-slider__dots {
  position: absolute;
  right: var(--edc-margin);
  bottom: 38px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 48px;
  height: 14px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dot::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 250ms ease;
}

.hero-dot.is-active::before {
  background: #fff;
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator span {
  display: block;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: edc-scroll-line 2s infinite ease-in-out;
}

@keyframes edc-scroll-line {
  0% { transform: translateY(-100%); }
  50%, 100% { transform: translateY(200%); }
}

.collections-section {
  padding-top: var(--edc-section);
  padding-bottom: var(--edc-section);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--edc-line);
}

.section-heading-row h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--edc-headline);
  font-weight: 600;
  line-height: 1.15;
}

.section-heading-row a,
.collection-card p {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading-row a {
  padding-bottom: 4px;
  color: var(--edc-muted);
}

.collections-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: var(--edc-gap);
  align-items: start;
}

.collections-layout__side {
  display: grid;
  gap: var(--edc-section);
  padding-top: clamp(70px, 13vw, 190px);
}

.collection-card__image {
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--edc-surface-mid);
}

.collection-card--featured .collection-card__image {
  aspect-ratio: 4 / 3;
}

.collection-card--portrait .collection-card__image {
  aspect-ratio: 3 / 4;
}

.collection-card--square .collection-card__image {
  aspect-ratio: 1 / 1;
}

.collection-card img,
.gallery-card img,
.about-interlude img,
.contact-studio-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 600ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-card a:hover img,
.gallery-card a:hover img,
.about-interlude__item:hover img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.collection-card h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 2.25vw, 32px);
  font-weight: 500;
  line-height: 1.25;
}

.collection-card p {
  margin-bottom: 0;
  color: var(--edc-muted);
}

/* Gallery hub */
.gallery-page {
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: var(--edc-section);
}

.gallery-intro {
  max-width: 900px;
  margin-bottom: var(--edc-section);
}

.gallery-intro h1 {
  margin-bottom: 30px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--edc-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gallery-intro p {
  max-width: 800px;
  margin-bottom: 0;
  color: #444748;
  font-size: var(--edc-body);
  line-height: 1.78;
  letter-spacing: 0.05em;
}

.gallery-masonry {
  columns: 3;
  column-gap: var(--edc-gap);
}

.gallery-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 var(--edc-gap);
  break-inside: avoid;
  vertical-align: top;
}

.gallery-card__image {
  overflow: hidden;
  background: var(--edc-surface-mid);
}

.gallery-card--portrait .gallery-card__image { aspect-ratio: 3 / 4; }
.gallery-card--square .gallery-card__image { aspect-ratio: 1 / 1; }
.gallery-card--landscape .gallery-card__image { aspect-ratio: 3 / 2; }
.gallery-card--film .gallery-card__image { aspect-ratio: 9 / 16; }
.gallery-card--wide .gallery-card__image { aspect-ratio: 4 / 3; }

.gallery-card__caption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
}

.gallery-card__caption h2 {
  margin-bottom: 3px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.2em;
}

.gallery-card__caption p {
  margin: 0;
  color: var(--edc-muted);
  font-size: 14px;
  line-height: 1.5;
}

.gallery-card__caption > span {
  font-size: 30px;
  line-height: 1;
  transition: transform 250ms ease;
}

.gallery-card a:hover .gallery-card__caption > span {
  transform: translateX(7px);
}

.gallery-contact-cta {
  display: grid;
  justify-items: center;
  margin-top: var(--edc-section);
  text-align: center;
}

.gallery-contact-cta p {
  margin-bottom: 14px;
  color: var(--edc-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.gallery-contact-cta a {
  padding-bottom: 5px;
  border-bottom: 2px solid var(--edc-black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--edc-headline);
  line-height: 1.2;
}

/* About */
.about-page {
  padding-top: clamp(48px, 6vw, 88px);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  gap: var(--edc-gap);
  align-items: end;
  margin-bottom: var(--edc-section);
}

.about-hero__image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-hero__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.about-hero__image:hover img {
  transform: scale(1.025);
}

.about-hero__copy {
  padding-bottom: clamp(8px, 3vw, 48px);
}

.about-hero__copy h1 {
  margin: 18px 0 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--edc-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.about-hero__copy p {
  max-width: 520px;
  margin: 0;
  color: #444748;
  font-size: var(--edc-body);
  line-height: 1.78;
  letter-spacing: 0.05em;
}

.about-story {
  margin-bottom: var(--edc-section);
}

.about-quote {
  margin-bottom: clamp(72px, 7vw, 110px);
  padding-left: clamp(28px, 4vw, 64px);
  border-left: 4px solid var(--edc-black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.35vw, 48px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 10vw, 150px);
}

.about-columns h2 {
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--edc-line);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.about-columns p {
  margin-bottom: 20px;
  color: #444748;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.about-interlude {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: var(--edc-section);
}

.about-interlude__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--edc-surface-mid);
}

.recognition-section {
  display: grid;
  grid-template-columns: minmax(240px, 4fr) minmax(0, 8fr);
  gap: var(--edc-gap);
  margin-bottom: var(--edc-section);
}

.recognition-section__title {
  align-self: start;
  position: sticky;
  top: 110px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--edc-headline);
  font-weight: 600;
  line-height: 1.2;
}

.recognition-list {
  border-top: 1px solid var(--edc-line);
}

.recognition-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--edc-line);
}

.recognition-item h3 {
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.25;
}

.recognition-item p {
  margin: 0;
  color: var(--edc-muted);
  font-size: 14px;
}

.recognition-item > span {
  flex: 0 0 auto;
  color: var(--edc-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.about-cta {
  display: grid;
  justify-items: center;
  padding: var(--edc-section) var(--edc-margin);
  background: var(--edc-surface-low);
  text-align: center;
}

.about-cta h2 {
  margin: 28px 0 42px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--edc-display);
  font-weight: 700;
  line-height: 1.08;
}

.about-cta a {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--edc-black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

/* Contact */
.contact-page {
  padding-top: clamp(60px, 7vw, 100px);
  padding-bottom: var(--edc-section);
}

.contact-intro {
  max-width: 1050px;
  margin-bottom: var(--edc-section);
}

.contact-intro h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--edc-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.contact-intro em {
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--edc-gap);
}

.contact-details {
  grid-column: 1 / span 4;
  display: grid;
  align-content: start;
  gap: clamp(56px, 7vw, 96px);
}

.contact-details h2,
.form-field label {
  display: block;
  margin-bottom: 18px;
  color: var(--edc-soft);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.2em;
}

.contact-details p,
.contact-details li {
  margin: 0;
  font-size: var(--edc-body);
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.contact-details ul {
  display: grid;
  gap: 10px;
}

.contact-details a {
  border-bottom: 1px solid transparent;
}

.contact-details a:hover {
  border-color: currentColor;
}

.contact-form-wrap {
  grid-column: 6 / span 7;
}

.contact-form {
  display: grid;
  gap: clamp(44px, 5vw, 68px);
}

.form-field {
  position: relative;
}

.form-field label {
  margin-bottom: 5px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(116, 120, 120, 0.45);
  outline: 0;
  background: transparent;
  color: var(--edc-ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 200ms ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--edc-black);
}

.form-field--select::after {
  content: "⌄";
  position: absolute;
  right: 2px;
  bottom: 14px;
  pointer-events: none;
}

.form-field select {
  appearance: none;
}

.contact-form button {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: start;
  padding: 20px 0 12px;
  border: 0;
  border-bottom: 1px solid var(--edc-black);
  background: transparent;
  color: var(--edc-black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  cursor: pointer;
  transition: gap 300ms ease;
}

.contact-form button:hover {
  gap: 34px;
}

.contact-form button span:last-child {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-studio-image {
  aspect-ratio: 21 / 9;
  margin-top: var(--edc-section);
  overflow: hidden;
  background: var(--edc-surface-mid);
}

/* Generic fallback page */
.default-page {
  min-height: 60vh;
  padding-top: 80px;
  padding-bottom: 120px;
}

.default-page h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--edc-display);
  line-height: 1.1;
}

/* Responsive */
@media (max-width: 899px) {
  .admin-bar .site-header { top: 46px; }

  .site-header,
  .site-header--editorial {
    min-height: 76px;
    padding-block: 20px;
  }

  .site-header.is-compact,
  .site-header--editorial.is-compact {
    min-height: 68px;
    padding-block: 15px;
  }

  .site-header--editorial .site-logo,
  .site-header--editorial.is-compact .site-logo,
  .site-logo {
    font-size: clamp(34px, 7vw, 48px);
  }

  .desktop-navigation {
    display: none;
  }

  .menu-toggle {
    display: grid;
    align-content: center;
    gap: 5px;
  }

  .hero-slider {
    height: calc(100svh - 76px);
    min-height: 540px;
  }

  .collections-layout {
    grid-template-columns: 1fr;
  }

  .collections-layout__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--edc-gap);
    padding-top: 30px;
  }

  .gallery-masonry {
    columns: 2;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__copy {
    padding-top: 22px;
  }

  .about-columns {
    gap: 48px;
  }

  .recognition-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .recognition-section__title {
    position: static;
  }

  .contact-details {
    grid-column: 1 / span 4;
  }

  .contact-form-wrap {
    grid-column: 6 / span 7;
  }
}

@media (max-width: 640px) {
  :root {
    --edc-margin: 24px;
    --edc-gap: 24px;
    --edc-section: 92px;
    --edc-display: 48px;
    --edc-headline: 36px;
  }

  body {
    font-size: 15px;
  }

  .site-header,
  .site-header--editorial {
    min-height: 70px;
    padding-block: 18px;
  }

  .site-logo,
  .site-header--editorial .site-logo,
  .site-header--editorial.is-compact .site-logo {
    font-size: 34px;
  }

  .overlay-navigation {
    gap: 42px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 36px;
  }

  .site-footer__social {
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-slider {
    height: calc(100svh - 70px);
    min-height: 540px;
  }

  .hero-slide__content {
    bottom: 82px;
  }

  .hero-slide__content h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-slider__dots {
    right: 24px;
    bottom: 28px;
  }

  .hero-dot {
    width: 30px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .section-heading-row {
    margin-bottom: 32px;
  }

  .section-heading-row h2 {
    font-size: 36px;
  }

  .collections-layout__side {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 56px;
  }

  .collection-card h3 {
    font-size: 27px;
  }

  .gallery-page {
    padding-top: 58px;
  }

  .gallery-masonry {
    columns: 1;
  }

  .gallery-card {
    margin-bottom: 52px;
  }

  .about-page {
    padding-top: 42px;
  }

  .about-hero__copy h1 {
    margin-top: 14px;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about-interlude {
    grid-template-columns: repeat(2, 1fr);
  }

  .recognition-item {
    align-items: flex-start;
    padding-block: 28px;
  }

  .recognition-item h3 {
    font-size: 24px;
  }

  .about-cta h2 {
    font-size: 46px;
  }

  .contact-page {
    padding-top: 52px;
  }

  .contact-intro {
    margin-bottom: 90px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 88px;
  }

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

  .contact-details {
    gap: 54px;
  }

  .contact-studio-image {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .edc-js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------------------------------------------------------
   Primary navigation submenu
   Append this block to the theme's main stylesheet.
--------------------------------------------------------- */

.primary-menu,
.primary-menu .sub-menu,
.overlay-menu-list,
.overlay-menu-list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Desktop dropdown */
.desktop-navigation .primary-menu > .menu-item {
	position: relative;
}

.desktop-navigation .primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 100;
	min-width: 180px;
	padding-top: 12px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.desktop-navigation .primary-menu .sub-menu::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--edc-menu-background, #fff);
	z-index: -1;
}

.desktop-navigation .primary-menu .sub-menu a {
	display: block;
	white-space: nowrap;
	padding: 7px 12px;
}

.desktop-navigation .primary-menu .menu-item-has-children:hover > .sub-menu,
.desktop-navigation .primary-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

/* Overlay/mobile menu: children remain visible below the parent */
.overlay-menu-list .sub-menu {
	display: block;
	margin-top: 14px;
	padding-left: 0;
}

.overlay-menu-list .sub-menu li + li {
	margin-top: 12px;
}

.overlay-menu-list .sub-menu a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(18px, 4.8vw, 22px);
	line-height: 1.35;
	letter-spacing: 0.02em;
	opacity: 0.72;
}

.overlay-menu-list .sub-menu a::before {
	content: "—";
	font-size: 0.9em;
	line-height: 1;
	opacity: 0.65;
}

.overlay-menu-list .sub-menu a:hover,
.overlay-menu-list .sub-menu a:focus-visible,
.overlay-menu-list .sub-menu .current-menu-item > a {
	opacity: 1;
}

.overlay-menu-list .current-menu-item > a,
.overlay-menu-list .current-menu-ancestor > a,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
	opacity: 1;
}

@media (max-width: 767px) {
	.site-header {
		position: relative;
		width: 100%;
	}

	.site-header .menu-toggle {
		position: absolute;
		top: 50%;
		right: clamp(24px, 6.4vw, 48px);
		margin: 0;
		transform: translateY(-50%);
	}
}

.site-footer__social,
.site-footer__legal-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px 36px;
}

.site-footer__legal {
	margin-top: 24px;
}

.site-footer__legal-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__legal-list li {
	margin: 0;
	padding: 0;
}

.site-footer__social a,
.site-footer__legal-list a {
	color: inherit;
	text-decoration: none;
	transition:
		opacity 0.25s ease,
		color 0.25s ease;
}

.site-footer__legal-list a {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.6;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible,
.site-footer__legal-list a:hover,
.site-footer__legal-list a:focus-visible {
	opacity: 1;
}

@media (max-width: 767px) {
	.site-footer__social,
	.site-footer__legal-list {
		align-items: flex-start;
		gap: 14px 24px;
	}

	.site-footer__legal {
		margin-top: 28px;
	}

	.site-footer__legal-list {
		flex-direction: column;
		gap: 12px;
	}
}
.hero-static-container {
		position: relative;
		width: 100%;
    height: calc(100vh - 135px);
		background-size: cover;
		background-position: center;
	}
	/* מיקום הכותרת בפינה השמאלית התחתונה של התמונה */
	.hero-static-title-box {
		position: absolute;
		bottom: 120px; 
		left: 0;
		width: 100%;
		text-align: left;
	}
	.hero-static-title-box h1 {
		color: #fff;
		font-family: 'Playfair Display', Georgia, serif;
		font-size: clamp(2.5rem, 6vw, 5rem);
		font-weight: 700; 
		letter-spacing: -0.01em;
		line-height: 1.1;
		text-transform: uppercase;
		margin: 0;
		text-shadow: 0 2px 14px rgba(0,0,0,0.4);
		text-align: left;
	}
	
	/* תיקון מוחלט להצמדת בלוק הטקסט לצד שמאל של האתר */
	.home-forced-left-block {
		text-align: left !important;
		direction: ltr !important;
		margin-left: 0 !important;      /* מצמיד את הקונטיינר לשמאל */
		margin-right: auto !important;   /* דוחף את השארית לימין */
		max-width: 600px !important;     /* מגביל את רוחב שורת הטקסט שלא תימתח מדי */
		display: block !important;
	}
	.home-forced-left-block p {
		text-align: left !important;
		margin-left: 0 !important;
		margin-right: auto !important;
	}

	.scroll-indicator-prominent {
		position: absolute;
		bottom: 40px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
		cursor: pointer;
		transition: all 0.3s ease;
		filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.5));
	}
	.scroll-indicator-prominent svg {
		width: 35px;
		height: auto;
		fill: #fff;
		animation: bounceIndicator 2s infinite;
	}
	@keyframes bounceIndicator {
		0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
		40% { transform: translateY(-10px); }
		60% { transform: translateY(-5px); }
	}