:root {
  --background: hsl(40 30% 97%);
  --foreground: hsl(30 10% 15%);
  --card: hsl(40 25% 95%);
  --muted: hsl(30 8% 45%);
  --border: hsl(40 15% 85%);
  --accent: hsl(38 65% 50%);
  --accent-dark: hsl(38 62% 42%);
  --deep-action: hsl(30 10% 15%);
  --font-serif-copy: Georgia, "Times New Roman", serif;
  --radius: 4px;
  --shadow: 0 18px 60px rgb(40 32 24 / 0.12);
  --heart-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21.2 10.55 19.9C5.4 15.25 2 12.18 2 8.35 2 5.28 4.42 2.85 7.5 2.85c1.74 0 3.41.81 4.5 2.09 1.09-1.28 2.76-2.09 4.5-2.09 3.08 0 5.5 2.43 5.5 5.5 0 3.83-3.4 6.9-8.55 11.57L12 21.2Z'/%3E%3C/svg%3E");
  --chevron-double-left: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 6 7 12l6 6M19 6l-6 6 6 6' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --chevron-double-right: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 6l6 6-6 6M5 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(92px + env(safe-area-inset-top, 0px));
  background: var(--background);
}

section[id] {
  scroll-margin-top: calc(92px + env(safe-area-inset-top, 0px));
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--background);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 24px);
  color: var(--muted);
  font-size: 13.5px;
  white-space: nowrap;
}

.main-nav a,
.mobile-nav a,
.site-footer nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.mobile-nav a:hover,
.site-footer nav a:hover {
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 17px;
  color: #fff;
  background: var(--deep-action);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.contact-pill .icon {
  font-size: 13px;
}

.menu-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: hsl(40 30% 97% / 0.85);
  background-image: none;
  box-shadow: none;
  color: var(--foreground);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--foreground);
  pointer-events: none;
}

.menu-toggle:focus {
  outline: none;
}

.menu-toggle:focus-visible {
  box-shadow: 0 0 0 3px hsl(38 65% 50% / 0.18);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 49;
  max-height: calc(100svh - 72px);
  overflow-y: auto;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: hsl(40 30% 97% / 0.98);
  box-shadow: 0 24px 48px rgb(33 28 24 / 0.08);
  backdrop-filter: blur(18px);
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 72px), 780px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, hsl(40 30% 97% / 0.78), hsl(40 30% 97% / 0.92)),
    url("../img/hero/main-bg.webp") center / cover;
  opacity: 0.34;
  filter: saturate(0.75) contrast(0.92);
  transform: scale(1.06);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 62px 0 78px;
  text-align: center;
}

.hero-name {
  margin: 0 0 30px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.52em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 600;
  line-height: 0.93;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--accent);
}

.hero-copy {
  max-width: 660px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
}

.button-gold {
  color: #fff;
  background: var(--accent);
}

.button-gold:hover {
  background: var(--accent-dark);
}

.button-ghost,
.button-outline {
  color: var(--foreground);
  background: transparent;
  border-color: var(--border);
}

.button-outline {
  min-height: 46px;
  padding: 0 22px;
}

.section {
  padding: 112px 0;
}

.section:nth-of-type(odd) {
  background: var(--card);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h2,
h3 {
  font-family: var(--font-serif-copy);
}

.section-head {
  max-width: 740px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head h2,
.about-intro h2,
.acquire-layout h2,
.contact-panel h2,
.modal h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 600;
  line-height: 1.05;
}

.section-head p:not(.section-kicker) {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.about-section {
  background: var(--background);
}

.about-intro {
  margin: 0 auto 52px;
  max-width: 740px;
  text-align: center;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: 112px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 18px;
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-text {
  max-width: 730px;
  color: var(--muted);
}

.about-text h3 {
  margin: 0 0 24px;
  color: var(--foreground);
  font-size: 40px;
  line-height: 1.1;
}

.about-text p {
  margin: 0 0 18px;
}

.about-signature {
  color: var(--foreground);
  font-family: var(--font-serif-copy);
  font-size: 28px;
  font-style: italic;
  line-height: 1.35;
}

.about-actions {
  justify-content: flex-start;
}

.slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.slider-window {
  overflow: hidden;
  border-radius: var(--radius);
  background: hsl(40 25% 92%);
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.slider-track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: hsl(40 25% 92%);
  object-fit: cover;
}

.slider-track img,
.slider-slide img,
.slider-slide video {
  pointer-events: none;
}

.slider-track.is-dragging,
.ceramic-track.is-dragging {
  cursor: grabbing;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  background: hsl(40 30% 97% / 0.88);
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 18px rgb(33 28 24 / 0.08);
}

.slider-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: var(--chevron-double-left) center / contain no-repeat;
  -webkit-mask: var(--chevron-double-left) center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.slider-btn.next::before {
  mask: var(--chevron-double-right) center / contain no-repeat;
  -webkit-mask: var(--chevron-double-right) center / contain no-repeat;
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: hsl(30 8% 45% / 0.28);
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.slider-dots button.active {
  width: 26px;
  background: var(--foreground);
}

.visualization-request {
  margin-top: 44px;
  text-align: center;
}

.visual-form {
  display: none;
  max-width: 850px;
  margin: 36px auto 0;
  padding: 34px;
  text-align: left;
  background: var(--background);
  border: 1px solid var(--border);
}

.visual-form.is-open {
  display: block;
}

.visual-form p {
  margin: 0 0 24px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: hsl(40 30% 99%);
  color: var(--foreground);
}

input {
  min-height: 46px;
  padding: 0 14px;
}

input[type="file"] {
  padding: 11px 14px;
}

textarea {
  padding: 12px 14px;
  resize: vertical;
}

.form-message {
  display: block;
  min-height: 24px;
  margin-top: 14px;
  color: var(--accent-dark);
  font-size: 14px;
}

.form-message.is-error {
  color: #9c352d;
}

.form-message.is-success {
  color: var(--accent-dark);
}

.visual-form[aria-busy="true"] .button-gold {
  cursor: wait;
  opacity: 0.72;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.video-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
}

.video-copy p:not(.section-kicker) {
  color: var(--muted);
}

.video-frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--border);
  background: var(--background);
  box-shadow: var(--shadow);
}

.video-frame.is-loading::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  background: linear-gradient(rgb(250 248 244 / 0.24), rgb(250 248 244 / 0.24));
  pointer-events: none;
}

.video-frame.is-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 3px solid rgb(218 155 37 / 0.28);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: video-loading-spin 0.8s linear infinite;
  pointer-events: none;
}

@keyframes video-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.video-frame video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 28px;
}

.work-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: hsl(40 25% 92%);
  object-fit: cover;
}

.work-card h3 {
  margin: 16px 0 4px;
  font-size: 22px;
  line-height: 1.18;
}

.work-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.work-availability {
  max-width: 260px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.work-contact-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 5px 12px;
  border: 1px solid var(--accent-dark);
  border-radius: 4px;
  color: var(--accent-dark);
  background: transparent;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.direction-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 0;
  border: 0;
  color: #fff;
  background: var(--foreground);
  text-align: left;
}

.direction-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.5s ease;
}

.direction-card:hover img {
  transform: scale(1.04);
}

.direction-card span {
  position: absolute;
  left: 34px;
  bottom: 30px;
  font-family: var(--font-serif-copy);
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 2px 24px rgb(0 0 0 / 0.4);
}

.process-slider .slider-track img {
  aspect-ratio: 16 / 10;
}

.acquire-section {
  position: relative;
  overflow: hidden;
}

.acquire-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, hsl(40 30% 97%) 0%, hsl(40 30% 97% / 0.94) 44%, hsl(40 30% 97% / 0.52) 100%),
    url("../img/soul-arabesque.webp") right center / contain no-repeat;
  opacity: 0.34;
}

.acquire-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.steps span {
  color: var(--accent);
  font-family: var(--font-serif-copy);
  font-size: 34px;
  line-height: 1;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.faq-wrap {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--border);
  background: hsl(40 30% 97% / 0.72);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 22px;
  cursor: pointer;
  color: var(--foreground);
  font-weight: 500;
}

summary::after {
  content: "⌄";
  color: var(--muted);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-cta {
  margin-top: 42px;
  text-align: center;
}

.faq-cta p {
  color: var(--muted);
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.footer-brand {
  display: inline-block;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.copyright {
  text-align: right;
}

.contact-panel,
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgb(33 28 24 / 0.42);
}

.contact-panel.is-open,
.modal.is-open {
  display: block;
}

.contact-panel-inner {
  position: absolute;
  right: 0;
  top: 0;
  width: min(440px, 100%);
  height: 100%;
  padding: 54px 38px;
  background: var(--background);
  box-shadow: var(--shadow);
}

.close-panel,
.close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
}

.contact-panel h2,
.modal h2 {
  font-size: 44px;
}

.contact-panel p:not(.section-kicker),
.modal p:not(.section-kicker) {
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-links a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.contact-links small {
  color: var(--accent);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 13px;
}

.modal-card {
  position: relative;
  width: min(560px, calc(100% - 40px));
  margin: 12vh auto 0;
  padding: 46px;
  background: var(--background);
  box-shadow: var(--shadow);
}

body.panel-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .about-layout,
  .video-layout,
  .acquire-layout {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    position: relative;
    top: auto;
    max-width: 520px;
    margin: 0 auto;
  }

  .about-layout-simple {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .about-layout-simple .about-portrait,
  .about-text-centered {
    grid-column: auto;
    grid-row: auto;
  }

  .about-text-centered {
    margin-top: 38px;
    padding-top: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .container {
    width: 100%;
    padding-inline: 16px;
  }

  .header-inner {
    min-height: 68px;
  }

  .mobile-nav {
    max-height: calc(100svh - 68px);
    padding: 0 24px 24px;
  }

  .brand {
    font-size: 24px;
  }

  .contact-pill {
    display: none;
  }

  .hero {
    min-height: clamp(500px, calc(100svh - 68px), 620px);
  }

  .hero-content {
    width: 100%;
    padding: 50px 0 48px;
  }

  .hero-name {
    margin-bottom: 24px;
    font-size: 11px;
    letter-spacing: 0.32em;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 17px;
  }

  .hero-actions,
  .about-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-head h2,
  .about-intro h2,
  .acquire-layout h2 {
    font-size: 42px;
  }

  .about-layout {
    gap: 38px;
  }

  .about-text h3 {
    font-size: 34px;
  }

  .form-grid,
  .direction-grid {
    grid-template-columns: 1fr;
  }

  .visual-form {
    padding: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .direction-card,
  .direction-card img {
    min-height: 320px;
  }

  .direction-card span {
    left: 22px;
    bottom: 22px;
    font-size: 34px;
  }

  .process-slider .slider-track img {
    aspect-ratio: 4 / 5;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
  }

  .modal-card {
    padding: 38px 24px 28px;
  }
}

/* New-set refinements */
.mobile-contact-brand {
  display: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 600;
  color: var(--foreground);
}

.favorite-header {
  appearance: none;
  -webkit-appearance: none;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0;
}

.favorite-header::before {
  content: "";
  width: 23px;
  height: 21px;
  display: block;
  background: currentColor;
  mask-image: var(--heart-mask);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: var(--heart-mask);
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  filter: drop-shadow(0 1px 0 rgb(213 151 45 / 0.2));
  transform: translateY(1px);
}

.contact-pill {
  min-height: 38px;
  padding: 0 24px;
  color: var(--foreground);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 600;
}

.button-primary,
.button-gold {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  border-radius: 8px;
}

.button-primary:hover,
.button-gold:hover {
  background: var(--accent-dark);
}

.hero {
  min-height: calc(100svh - 72px);
  background: var(--background);
}

.hero-bg {
  background:
    radial-gradient(circle at 50% 42%, rgb(250 248 244 / 0.92) 0 22%, rgb(250 248 244 / 0.74) 48%, rgb(250 248 244 / 0.52) 72%),
    linear-gradient(rgb(250 248 244 / 0.72), rgb(250 248 244 / 0.82)),
    url("../img/hero/main-bg.webp") center / cover;
  opacity: 1;
}

.hero-content {
  position: relative;
  min-height: calc(100svh - 72px);
  padding: 100px 0 96px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 12% 8% 18%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgb(250 248 244 / 0.62), transparent 68%);
  pointer-events: none;
}

.hero-name {
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(60px, 8vw, 128px);
  line-height: 0.9;
}

.hero-copy {
  display: grid;
  gap: 4px;
  max-width: 560px;
  margin-top: 48px;
  color: hsl(30 8% 38%);
  font-family: var(--font-serif-copy);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 12px rgb(250 248 244 / 0.82);
}

.hero-copy span:last-child {
  margin-top: 36px;
}

.section-head-gold {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head-gold h2,
.acquire-section h2 {
  margin: 0;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.98;
}

.section-head-gold p {
  color: var(--muted);
  font-family: var(--font-serif-copy);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.22;
  letter-spacing: 0.04em;
}

.about-section {
  padding-top: 110px;
}

.about-intro {
  margin-bottom: 34px;
}

.about-intro h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.96;
  text-align: center;
}

.about-layout-simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: clamp(42px, 5vw, 82px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.about-layout-simple .about-portrait {
  grid-column: 2;
  grid-row: 1;
  max-width: 560px;
  margin: 0 auto;
}

.about-layout-simple .about-portrait img {
  aspect-ratio: 2 / 3;
}

.about-text-centered {
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  margin: 0;
  padding-top: 10px;
  text-align: left;
}

.about-text-centered p {
  color: var(--muted);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.68;
  letter-spacing: 0;
}

.about-text-centered .about-signature {
  max-width: none;
  margin: 24px 0 0;
  color: var(--foreground);
  font-weight: 500;
}

.visualization .section-head-gold h2 {
  font-size: clamp(38px, 4.6vw, 68px);
}

.section-head-gold h2 span {
  display: block;
}

.nowrap {
  white-space: nowrap;
}

.visualization-request .button-primary {
  min-width: min(100%, 360px);
  min-height: 58px;
  padding: 8px 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.video-layout-simple {
  display: block;
  max-width: 720px;
}

.video-layout-simple .video-frame {
  max-width: 390px;
  margin: 0 auto;
  padding: 12px;
}

.video-layout-simple .video-frame video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: hsl(40 24% 91%);
  max-height: min(76vh, 720px);
}

.gallery-heading {
  margin-bottom: 30px;
}

.category-pill {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: min(100%, 360px);
  min-height: 58px;
  margin-top: 22px;
  padding: 8px 22px;
  border: 0;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.favorite-media-wrap {
  position: relative;
  overflow: hidden;
  cursor: default;
}

#ceramics .favorite-media-wrap,
#paintings .favorite-media-wrap {
  cursor: zoom-in;
}

.favorite-toggle {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--accent);
  background: rgb(250 248 244 / 0.82);
  border-radius: 999px;
  font-size: 0;
  box-shadow: 0 8px 18px rgb(33 28 24 / 0.12);
  cursor: pointer;
}

.favorite-toggle::before {
  content: "";
  width: 19px;
  height: 18px;
  display: block;
  background: currentColor;
  mask-image: var(--heart-mask);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: var(--heart-mask);
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  transform: translateY(1px);
}

.favorite-toggle.is-active {
  color: #fff;
  background: var(--accent);
}

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

.paintings-grid {
  width: min(100%, 820px);
  margin: 0 auto;
}

.paintings-grid .favorite-media-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: hsl(40 20% 94%);
}

.paintings-grid .media-tile img {
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  background: hsl(40 20% 94%);
}

.paintings-grid .round-work img {
  object-fit: contain;
}

.paintings-grid [data-favorite-id="painting-dar-orakula"] img {
  transform: scale(1.18);
}

.media-tile img,
.media-tile video {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
}

.media-tile {
  border: 0;
  background: transparent;
}

.media-tile .favorite-media-wrap {
  overflow: hidden;
}

.slider-slide {
  flex: 0 0 100%;
  margin: 0;
}

.slider-slide img,
.slider-slide video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.accent-slider .slider-slide img,
.accent-slider .slider-slide video {
  aspect-ratio: 4 / 3;
}

.process-slider .slider-slide img,
.process-slider .slider-slide video {
  aspect-ratio: 4 / 5;
}

.round-work img {
  object-fit: contain;
  background: hsl(40 20% 94%);
}

.work-card img[src*="dar-orakula"] {
  transform: scale(1.18);
  transform-origin: center;
}

.video-frame,
.slider-window {
  cursor: default;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 76px;
  overflow: hidden;
  overscroll-behavior: contain;
  background: rgb(20 18 16 / 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.media-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-stage {
  width: min(1180px, calc(100vw - 152px));
  height: min(86svh, calc(100svh - 72px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.lightbox-media-frame {
  position: relative;
  width: fit-content;
  height: fit-content;
  max-width: min(1180px, calc(100vw - 152px));
  max-height: min(86svh, calc(100svh - 72px));
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-stage img,
.lightbox-stage video {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1180px, calc(100vw - 152px));
  max-height: min(86svh, calc(100svh - 72px));
  aspect-ratio: auto;
  object-fit: contain;
  background: hsl(40 20% 94%);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.34);
}

.media-lightbox.has-details .lightbox-stage {
  height: min(68svh, calc(100svh - 210px));
}

.media-lightbox.has-details .lightbox-media-frame,
.media-lightbox.has-details .lightbox-stage img,
.media-lightbox.has-details .lightbox-stage video {
  max-height: min(68svh, calc(100svh - 210px));
}

.lightbox-details {
  width: min(580px, calc(100vw - 152px));
  margin-top: 12px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: center;
  color: var(--foreground);
  background: hsl(40 30% 97% / 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgb(0 0 0 / 0.24);
}

.lightbox-details[hidden] {
  display: none;
}

.lightbox-details p {
  margin: 0;
}

.lightbox-size {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.lightbox-availability {
  color: var(--muted);
  font-size: 13px;
}

.lightbox-details .work-contact-pill {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  white-space: nowrap;
}

.lightbox-close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgb(20 18 16 / 0.35);
  font-size: 30px;
  line-height: 1;
}

.lightbox-favorite {
  position: absolute;
  top: auto;
  left: auto;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  width: 46px;
  height: 46px;
  background: hsl(40 30% 97% / 0.9);
}

.lightbox-favorite::before {
  width: 23px;
  height: 21px;
}

.lightbox-favorite[hidden] {
  display: none;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  background: hsl(40 30% 97% / 0.88);
  font-size: 0;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 18px rgb(33 28 24 / 0.16);
}

.lightbox-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask: var(--chevron-double-left) center / contain no-repeat;
  -webkit-mask: var(--chevron-double-left) center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.lightbox-next::before {
  mask: var(--chevron-double-right) center / contain no-repeat;
  -webkit-mask: var(--chevron-double-right) center / contain no-repeat;
}

.lightbox-prev {
  left: max(16px, env(safe-area-inset-left));
}

.lightbox-next {
  right: max(16px, env(safe-area-inset-right));
}

.media-lightbox:not(.has-multiple) .lightbox-nav {
  display: none;
}

.interior-section .section-head-gold {
  max-width: 880px;
}

.acquire-layout {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.steps {
  gap: 34px;
  margin-top: 36px;
}

.steps li {
  border: 0;
  padding: 0;
}

.steps li span {
  color: var(--accent);
  font-family: var(--font-serif-copy);
  font-size: 34px;
  letter-spacing: 0.14em;
}

.steps li p {
  color: var(--muted);
  font-family: var(--font-serif-copy);
  font-size: 26px;
  line-height: 1.22;
  letter-spacing: 0.04em;
}

.faq-cards {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  background: hsl(40 30% 97% / 0.55);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  padding: 20px 22px;
  color: var(--foreground);
  font-family: var(--font-serif-copy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
  cursor: pointer;
}

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

.faq-item summary::marker,
.faq-item summary::after {
  content: "";
  display: none;
}

.faq-plus {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-family: var(--font-serif-copy);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.faq-cta {
  text-align: left;
}

.contact-panel-inner,
.favorites-panel-inner {
  width: min(560px, calc(100% - 36px));
  min-height: min(760px, calc(100svh - 48px));
  padding: 56px 64px;
  background: var(--card);
}

.contact-panel h2,
.favorites-panel h2 {
  color: var(--accent);
  font-size: clamp(44px, 5vw, 72px);
}

.contact-panel p,
.favorites-panel p {
  color: var(--muted);
  font-family: var(--font-serif-copy);
  font-size: clamp(22px, 2vw, 25px);
  line-height: 1.18;
  letter-spacing: 0.04em;
}

.contact-buttons {
  align-items: flex-start;
  margin-top: 34px;
}

.contact-buttons a {
  width: fit-content;
  min-width: 224px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 14px 9px 24px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.04em;
}

.contact-buttons .messenger-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.contact-buttons .messenger-icon-chip {
  background: #fff;
  border-radius: 999px;
}

.contact-buttons .messenger-icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
  mask-image: var(--icon-mask);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: var(--icon-mask);
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.contact-buttons .messenger-icon-phone,
.contact-buttons .messenger-icon-whatsapp {
  color: var(--accent);
}

.contact-buttons .messenger-icon-phone {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.contact-buttons .messenger-icon-whatsapp {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.86 11.86 0 0 0 12.08 0C5.49 0 .13 5.35.13 11.93c0 2.1.55 4.16 1.6 5.97L0 24l6.25-1.64a11.95 11.95 0 0 0 5.82 1.48h.01c6.58 0 11.94-5.35 11.94-11.93 0-3.19-1.24-6.18-3.5-8.43ZM12.08 21.82h-.01a9.9 9.9 0 0 1-5.05-1.38l-.36-.21-3.71.97.99-3.61-.24-.37a9.86 9.86 0 0 1-1.51-5.29c0-5.46 4.44-9.9 9.9-9.9 2.65 0 5.13 1.03 7 2.9a9.84 9.84 0 0 1 2.9 7c0 5.45-4.44 9.89-9.9 9.89Zm5.43-7.41c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.39-1.47-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.21 3.07c.15.2 2.1 3.21 5.08 4.5.71.31 1.26.49 1.69.63.71.23 1.36.19 1.87.12.57-.09 1.76-.72 2.01-1.41.25-.69.25-1.29.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
}

.contact-buttons .messenger-icon-max {
  color: #fff;
  background: transparent;
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50.7571 0.261719C78.2929 0.261719 99.8857 22.5974 99.8857 50.1474C99.8857 77.6974 77.6071 99.4903 51.0214 99.4903C41.5857 99.4903 37.0143 98.1617 29.65 92.9474C29.1429 92.5903 28.45 92.6831 28.0214 93.1403C22.3571 99.1831 7.85 103.426 7.18571 95.176C7.18571 80.7903 0 71.4474 0 49.876C0 21.5546 23.2214 0.261719 50.7571 0.261719ZM51.5286 24.8117C38.4643 24.126 28.2643 33.1974 26.0143 47.3831C24.15 59.1332 27.45 73.4546 30.2786 74.176C31.4786 74.4832 34.3571 72.276 36.4571 70.2974C36.85 69.926 37.45 69.8617 37.9071 70.1474C41.1786 72.1474 44.8786 73.6474 48.9571 73.8617C62.3714 74.5617 74.2571 64.0617 74.9643 50.6474C75.6643 37.2331 64.9429 25.5046 51.5286 24.8046V24.8117Z'/%3E%3C/svg%3E");
}

.contact-buttons .messenger-icon-max::before {
  width: 32px;
  height: 32px;
}

.favorites-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgb(33 28 24 / 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.favorites-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.favorites-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.favorites-list.has-thumbs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.favorite-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
}

.favorite-list-item small {
  color: var(--accent);
}

.favorite-thumb-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: hsl(40 25% 92%);
}

.favorite-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorite-thumb-item button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgb(250 248 244 / 0.86);
  font-size: 16px;
  line-height: 1;
}

.favorite-video-mark {
  position: absolute;
  left: 6px;
  bottom: 6px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgb(33 28 24 / 0.5);
  font-size: 11px;
}

.favorite-text-item {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 78px;
  }

  .brand,
  .contact-pill {
    display: none;
  }

  .mobile-contact-brand,
  .favorite-header {
    display: inline-grid;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 52px 0 48px;
  }

  .hero-name {
    font-size: 34px;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 76px);
  }

  .hero-copy {
    margin-top: 40px;
    color: hsl(30 8% 35%);
    font-size: 26px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head-gold {
    margin-bottom: 34px;
  }

  .section-head-gold h2 {
    font-size: 42px;
  }

  .visualization .section-head-gold h2 {
    font-size: 37px;
  }

  .section-head-gold p {
    font-size: 25px;
  }

  .about-intro h2 {
    font-size: 44px;
  }

  .about-layout-simple .about-portrait {
    max-width: 344px;
  }

  .about-text-centered {
    margin-top: 32px;
    text-align: left;
  }

  .about-text-centered p {
    font-size: 15px;
    line-height: 1.62;
  }

  .category-pill {
    min-width: 0;
    width: min(100%, 330px);
    min-height: 58px;
    font-size: 23px;
  }

  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .paintings-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-tile img,
  .media-tile video {
    aspect-ratio: 1 / 0.92;
  }

  .favorite-toggle {
    right: 4px;
    bottom: 4px;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .accent-slider .slider-slide img,
  .accent-slider .slider-slide video,
  .visualization-slider .slider-slide img {
    aspect-ratio: 4 / 5;
  }

  .video-layout-simple {
    max-width: 100%;
  }

  .video-layout-simple .video-frame {
    max-width: min(100%, 340px);
    padding: 10px;
  }

  .video-layout-simple .video-frame video {
    aspect-ratio: 9 / 16;
    max-height: 560px;
  }

  .steps li {
    grid-template-columns: 52px 1fr;
    align-items: start;
  }

  .steps li p {
    font-size: 24px;
  }

  .faq-item summary {
    font-size: 22px;
  }

  .faq-item p {
    font-size: 22px;
  }

  .contact-panel-inner,
  .favorites-panel-inner {
    width: min(100% - 28px, 520px);
    padding: 48px 28px 36px;
  }

  .contact-panel p {
    font-size: 23px;
    line-height: 1.16;
  }

  .contact-buttons {
    margin-top: 28px;
  }

  .contact-buttons a {
    min-width: 214px;
    min-height: 50px;
    padding: 8px 13px 8px 22px;
    font-size: 23px;
  }

  .contact-buttons .messenger-icon {
    width: 32px;
    height: 32px;
  }

  .contact-buttons .messenger-icon-max::before {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 42px, 430px);
  }

  .media-grid {
    gap: 14px;
  }

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

  .hero-bg {
    background:
      radial-gradient(circle at 50% 42%, rgb(250 248 244 / 0.96) 0 24%, rgb(250 248 244 / 0.82) 50%, rgb(250 248 244 / 0.58) 74%),
      linear-gradient(rgb(250 248 244 / 0.78), rgb(250 248 244 / 0.86)),
      url("../img/hero/main-bg.webp") center / cover;
  }

  .visualization .section-head-gold h2 {
    font-size: 35px;
  }

  .visualization-request .button-primary {
    min-height: 54px;
    font-size: 22px;
  }
}

@media (max-width: 1080px) {
  .about-layout-simple {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .about-layout-simple .about-portrait,
  .about-text-centered {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .about-layout-simple {
    display: block;
    max-width: 100%;
  }

  .about-layout-simple .about-portrait {
    width: min(100%, 344px);
    margin: 0 auto;
  }

  .about-text-centered {
    display: block;
    width: 100%;
    max-width: 344px;
    margin: 28px auto 0;
    padding-top: 0;
    text-align: left;
  }

  .media-lightbox {
    padding: 64px 16px 28px;
  }

  .lightbox-stage {
    width: calc(100vw - 32px);
    height: calc(100svh - 110px);
  }

  .lightbox-stage img,
  .lightbox-stage video {
    max-width: calc(100vw - 32px);
    max-height: calc(100svh - 110px);
  }

  .lightbox-media-frame {
    max-width: calc(100vw - 32px);
    max-height: calc(100svh - 110px);
  }

  .media-lightbox.has-details .lightbox-stage {
    height: calc(100svh - 250px);
  }

  .media-lightbox.has-details .lightbox-media-frame,
  .media-lightbox.has-details .lightbox-stage img,
  .media-lightbox.has-details .lightbox-stage video {
    max-height: calc(100svh - 250px);
  }

  .lightbox-details {
    width: calc(100vw - 32px);
    padding: 12px 14px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lightbox-size {
    font-size: 20px;
  }

  .lightbox-details .work-contact-pill {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-top: 4px;
  }

  .lightbox-close {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .lightbox-favorite {
    width: 42px;
    height: 42px;
    right: 10px;
    bottom: 10px;
  }

  .lightbox-favorite::before {
    width: 21px;
    height: 19px;
  }

  .lightbox-nav {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: max(10px, env(safe-area-inset-left));
  }

  .lightbox-next {
    right: max(10px, env(safe-area-inset-right));
  }
}

/* Final 20260716 refinements */
.hero-name {
  white-space: nowrap;
}

.section-head-gold h2,
.about-intro h2,
.acquire-layout h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.process-section .section-head-gold h2 {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .hero-content {
    padding: 52px 0 54px;
  }

  .hero-name {
    margin-bottom: 28px;
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.05;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(43px, 11vw, 52px);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 54px;
    color: hsl(30 8% 36%);
    font-size: 22px;
    line-height: 1.28;
    letter-spacing: 0.05em;
  }

  .hero-copy span:last-child {
    margin-top: 32px;
  }

  .section-head-gold h2,
  .about-intro h2,
  .acquire-layout h2 {
    font-size: 37px;
    line-height: 1.08;
  }

  .process-section .section-head-gold h2 {
    font-size: clamp(31px, 9vw, 37px);
  }

  .category-pill {
    width: min(100%, 360px);
    min-height: 58px;
    font-size: 23px;
  }

  .gallery-cover {
    max-width: min(100%, 360px);
    margin-top: 28px;
  }

  .work-contact-pill {
    min-height: 30px;
  }

  .favorites-list.has-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .favorite-toggle::before {
    width: 16px;
    height: 15px;
  }

  .lightbox-nav {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: max(10px, env(safe-area-inset-left));
  }

  .lightbox-next {
    right: max(10px, env(safe-area-inset-right));
  }
}

@media (max-width: 460px) {
  .hero {
    min-height: calc(100svh - 78px);
  }

  .hero-content {
    min-height: calc(100svh - 78px);
  }

  .about-intro h2 {
    font-size: 36px;
  }
}

/* Privacy page */
.privacy-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.privacy-main {
  flex: 1;
}

.privacy-header .header-inner {
  justify-content: space-between;
}

.privacy-header .brand {
  display: inline-block;
}

.privacy-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--foreground);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.privacy-back-link:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.privacy-document {
  width: min(920px, calc(100% - 48px));
  padding: clamp(72px, 9vw, 128px) 0 clamp(84px, 10vw, 144px);
}

.privacy-eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.privacy-document h1 {
  max-width: 880px;
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 600;
  line-height: 0.96;
}

.privacy-date {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-intro {
  margin-top: clamp(42px, 6vw, 72px);
  padding-left: clamp(20px, 4vw, 46px);
  border-left: 2px solid var(--accent);
}

.privacy-document p,
.privacy-document li {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

.privacy-document p {
  margin: 0 0 16px;
}

.privacy-document a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.privacy-document section {
  margin-top: clamp(52px, 7vw, 76px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid var(--border);
}

.privacy-document h2 {
  margin: 0 0 24px;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.05;
}

.privacy-document ul {
  margin: 20px 0 22px;
  padding-left: 24px;
}

.privacy-document li {
  margin-bottom: 8px;
  padding-left: 6px;
}

.privacy-document li::marker {
  color: var(--accent);
}

.privacy-email {
  display: inline-block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
}

@media (max-width: 760px) {
  .privacy-header .header-inner {
    min-height: 78px;
  }

  .privacy-header .brand {
    font-size: 24px;
  }

  .privacy-back-link {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .privacy-document {
    width: min(100% - 42px, 600px);
    padding: 64px 0 88px;
  }

  .privacy-document h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .privacy-intro {
    margin-top: 38px;
    padding-left: 20px;
  }

  .privacy-document section {
    margin-top: 48px;
    padding-top: 28px;
  }

  .privacy-document h2 {
    font-size: 34px;
  }

}

@media (max-width: 460px) {
  .privacy-header .brand {
    font-size: 21px;
  }

  .privacy-back-link {
    padding-inline: 12px;
  }
}
