/* 1. Tema: renkleri ve genişlikleri buradan topluca değiştirebilirsiniz. */
:root {
  color-scheme: dark;
  --background: #0c141c;
  --surface: #111c25;
  --gold: #c5ac7a;
  --gold-light: #e0cda6;
  --text: #eeeae2;
  --muted: #a7afb2;
  --line: rgba(197, 172, 122, 0.24);
  --serif: "Cormorant Garamond", "Bodoni MT", Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
  --gutter: clamp(1.5rem, 6vw, 7rem);
  --max-width: 1440px;
}
/* Yerel WOFF2 fontları: Türkçe karakterler için Latin Extended alt kümesi. */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/serif-regular-ext.woff2") format("woff2");
  unicode-range: U+0100-02FF, U+1E00-1EFF, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/serif-regular.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/serif-italic-ext.woff2") format("woff2");
  unicode-range: U+0100-02FF, U+1E00-1EFF, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/serif-italic.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Ana ekrandaki iki koleksiyon adı için özgün Playfair Display Italic. */
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/playfair-display-italic.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2 {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}
h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  letter-spacing: -0.035em;
}
h1 em,
h2 em {
  font-weight: 400;
  color: var(--gold-light);
}
::selection {
  background: var(--gold);
  color: var(--background);
}
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 6px;
}
a,
button {
  touch-action: manipulation;
}
[hidden] {
  display: none !important;
}
.section-shell {
  max-width: var(--max-width);
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.19em;
  line-height: 1.6;
  color: var(--gold);
}
.short-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 1px solid var(--gold);
  background: none;
}
.text-link span {
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: var(--gold-light);
  color: var(--background);
  padding: 10px 18px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
/* 2. Üst menü ve tam ekran açılış. */
.site-header {
  height: 138px;
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  z-index: 20;
  border-bottom: 1px solid rgba(197, 172, 122, 0.2);
}
.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.brand-logo {
  display: block;
  width: 124px;
  height: auto;
  transition: opacity 0.2s;
}
.site-header .brand-logo {
  width: 140px;
}
.brand-link:hover .brand-logo {
  opacity: 0.8;
}
.navigation {
  display: flex;
  gap: 2.6rem;
  align-items: center;
}
.navigation a {
  font-size: 0.875rem;
  color: #c6c9c9;
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
}
.navigation a:hover,
.navigation a[aria-current] {
  color: var(--gold-light);
}
.navigation a[aria-current]::after {
  content: "";
  width: 15px;
  height: 1px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: 0;
}
.navigation .nav-contact {
  margin-left: 1rem;
  color: var(--text);
}
.nav-contact span {
  color: var(--gold);
  margin-left: 18px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 820px;
  min-height: max(760px, 100svh);
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0c171c;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 45%;
  z-index: -3;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 17, 24, 0.97) 0%,
      rgba(8, 17, 24, 0.88) 20%,
      rgba(8, 17, 24, 0.47) 46%,
      rgba(8, 17, 24, 0.02) 74%
    ),
    linear-gradient(
      0deg,
      rgba(8, 17, 24, 0.85),
      transparent 25%,
      transparent 85%,
      rgba(8, 17, 24, 0.45)
    );
}
.hero-content {
  padding: 150px var(--gutter) 170px;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
}
.hero h1 {
  width: fit-content;
  font-size: clamp(5rem, 8.4vw, 8.5rem);
  letter-spacing: -0.045em;
  margin: 29px 0 24px;
  line-height: 0.98;
  max-width: 780px;
}
.hero-description {
  color: #b8bfc0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.005em;
}
.hero-link {
  margin-top: 30px;
  min-width: 181px;
  justify-content: space-between;
}
.hero-bottom {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.hero-edition {
  color: #b7bab4;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  padding-bottom: 10px;
}
.hero-edition span {
  margin: 0 14px;
  color: var(--gold);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(197, 172, 122, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 1.25rem;
  transition: background 0.2s;
}
.scroll-cue:hover {
  background: rgba(197, 172, 122, 0.15);
}
.hero-caption {
  text-align: right;
}
.hero-caption em {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-light);
}
.hero-caption > span {
  display: block;
  font-size: 0.75rem;
  color: #a9afa9;
  letter-spacing: 0.035em;
  margin-top: 1px;
}
/* 3. Galeri: küçük resimler kırpılır, detay penceresi eserin tamamını gösterir. */
.gallery {
  padding-block: 106px 48px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 58px;
}
.section-number {
  margin-bottom: 20px;
}
.section-number > span {
  margin: 0 13px;
  opacity: 0.5;
}
.section-intro {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 5px;
}
.artwork-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 46px);
  align-items: start;
}
.artwork-card-offset {
  margin-top: 58px;
}
.artwork-open {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  text-align: left;
}
.artwork-image {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--surface);
  overflow: hidden;
  padding: 9px;
  border: 1px solid var(--line);
}
.artwork-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.6s;
}
.artwork-card:first-child .artwork-image img {
  object-position: 70% center;
}
.artwork-open:hover img {
  transform: scale(1.035);
  filter: brightness(1.07);
}
.artwork-zoom {
  position: absolute;
  right: 23px;
  bottom: 23px;
  display: grid;
  place-items: center;
  height: 42px;
  width: 42px;
  border: 1px solid rgba(224, 205, 166, 0.6);
  background: rgba(12, 20, 28, 0.7);
  border-radius: 50%;
  font-size: 1.35rem;
  transition: background 0.2s;
}
.artwork-open:hover .artwork-zoom {
  background: var(--background);
}
.artwork-index {
  position: absolute;
  top: 23px;
  left: 23px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-light);
  text-shadow: 0 1px 7px #000;
}
.artwork-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 17px 0 1px;
}
.artwork-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.2;
}
.artwork-year {
  font-size: 0.75rem;
  color: var(--muted);
}
.artwork-meta {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.8;
  margin-top: 6px;
}
.artwork-meta > span {
  color: var(--gold);
  margin: 0 7px;
}
.gallery-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 60px;
  padding: 26px 0 5px;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.015em;
}
.small-star {
  color: var(--gold);
  font-size: 1.5rem;
}
/* 4. Sanatçı bildirisi ve değiştirilebilir fotoğraf alanı. */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  padding-block: 114px 126px;
}
.artist-portrait {
  position: relative;
  max-width: 460px;
}
.artist-portrait::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line);
  z-index: -1;
}
.artist-photo {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 30%;
  width: 100%;
}
/* Motif fotoğrafın dışında kalır; portreye veya metne engel olmaz. */
.portrait-ornament {
  position: absolute;
  width: 104px;
  height: auto;
  left: -24px;
  bottom: -16px;
  opacity: 0.42;
  pointer-events: none;
}
.portrait-caption {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 32px;
  padding-left: 86px;
}
.about-content h2 {
  margin-bottom: 29px;
}
.about-content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 17px;
}
.about-content .about-lead {
  font-family: var(--serif);
  font-size: 1.65rem !important;
  line-height: 1.3 !important;
  color: var(--text) !important;
  margin-bottom: 21px !important;
}
.artist-signature {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 2.5rem;
  transform: rotate(-4deg);
  transform-origin: left;
  margin-top: 22px;
  line-height: 1.4;
}
.medium-note {
  display: flex;
  gap: 17px;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  color: var(--muted);
  margin-top: 25px;
}
.medium-note span:nth-child(even) {
  color: var(--gold);
}
/* 5. İletişim formu: çizgisel, görünür etiketli alanlar. */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 130px);
  padding-block: 88px 90px;
  border-top: 1px solid var(--line);
}
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-top: 26px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  font-family: var(--serif);
  font-size: 1.8rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  margin-top: 28px;
  overflow-wrap: anywhere;
}
.contact-email > span {
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--gold);
}
.social-links {
  display: flex;
  gap: 27px;
  margin-top: 26px;
}
.social-links a {
  font-size: 0.875rem;
  color: var(--muted);
}
.social-links a:hover {
  color: var(--gold-light);
}
.social-links span {
  color: var(--gold);
  margin-left: 9px;
}
.contact-form {
  padding-top: 7px;
  min-width: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 27px;
  min-width: 0;
}
.form-field label {
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 10px;
}
.form-field input,
.form-field textarea {
  display: block;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  width: 100%;
  min-height: 44px;
  padding: 7px 0 12px;
  outline-offset: 4px;
  transition: border-color 0.2s;
}
.form-field textarea {
  resize: vertical;
  min-height: 106px;
  max-height: 450px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #849097;
  font-size: 0.875rem;
  opacity: 1;
}
.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.form-footer p {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 190px;
}
.submit-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #101820;
  font-size: 0.875rem;
  min-height: 48px;
  padding: 12px 22px;
  transition: background 0.2s;
}
.submit-button:hover {
  background: var(--gold-light);
}
.submit-button > span {
  font-size: 1.25rem;
}
.form-status {
  font-size: 0.875rem;
  color: var(--gold-light);
  margin-top: 16px;
}
.form-status:empty {
  display: none;
}
/* 6. Alt bilgi ve eser büyütme penceresi. */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-block: 35px 22px;
}
.footer-ornament {
  position: absolute;
  z-index: -1;
  right: 18%;
  top: 12px;
  width: 160px;
  height: auto;
  opacity: 0.16;
  pointer-events: none;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand .brand-logo {
  width: 142px;
}
.footer-top p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
}
.back-to-top {
  font-size: 0.75rem;
  color: var(--muted);
}
.back-to-top span {
  margin-left: 24px;
  color: var(--gold);
  font-size: 1.2rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: #89949a;
  gap: 20px;
  font-size: 0.75rem;
  margin-top: 25px;
}
.artwork-dialog {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--background);
  color: var(--text);
  max-width: 1100px;
  width: calc(100% - 64px);
  max-height: calc(100svh - 64px);
  overflow: auto;
}
.artwork-dialog::backdrop {
  background: rgba(2, 7, 12, 0.92);
  backdrop-filter: blur(8px);
}
.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--background);
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
}
.dialog-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 580px;
}
.dialog-image-wrap {
  background: #080f15;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.dialog-image-wrap img {
  width: 100%;
  max-height: 75svh;
  object-fit: contain;
}
.dialog-details {
  padding: 75px 40px 34px;
  align-self: center;
  min-width: 0;
}
.dialog-details h2 {
  font-size: 3rem;
  margin: 22px 0;
}
.dialog-details > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}
.dialog-details dl {
  margin: 30px 0;
}
.dialog-details dl > div {
  display: grid;
  grid-template-columns: 6.25rem minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 0.875rem;
}
.dialog-details dt {
  color: var(--muted);
}
.dialog-details dd {
  margin: 0;
}
.dialog-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
  color: var(--muted);
  font-size: 0.75rem;
}
.dialog-navigation button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.3rem;
  color: var(--gold-light);
}
/* 7. Tablet ve telefon düzenleri. */
@media (min-width: 1600px) {
  .hero-content {
    max-width: none;
  }
  .hero-art {
    object-position: center 42%;
  }
}
@media (max-width: 1000px) {
  .hero {
    min-height: max(720px, 100svh);
  }
  .hero h1 {
    font-size: 6.3rem;
  }
  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(8, 17, 24, 0.93),
        rgba(8, 17, 24, 0.6) 47%,
        rgba(8, 17, 24, 0.08)
      ),
      linear-gradient(0deg, rgba(8, 17, 24, 0.9), transparent 30%);
  }
  .navigation {
    gap: 1.7rem;
  }
  .artwork-grid {
    gap: 22px;
  }
  .artwork-title {
    font-size: 1.5rem;
  }
  .artwork-meta {
    font-size: 0.75rem;
  }
  .about {
    gap: 60px;
    grid-template-columns: 0.85fr 1fr;
  }
  .contact {
    gap: 45px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-email {
    font-size: 1.55rem;
    gap: 15px;
  }
  .form-footer {
    align-items: start;
    flex-direction: column;
  }
  .form-footer p {
    max-width: none;
  }
  .dialog-details {
    padding-inline: 25px;
  }
  .dialog-details h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 25px;
  }
  .site-header {
    height: 112px;
  }
  .brand-logo {
    width: 100px;
  }
  .site-header .brand-logo {
    width: 110px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    width: 44px;
    height: 44px;
    background: transparent;
    z-index: 2;
  }
  .menu-toggle span {
    display: block;
    background: var(--gold-light);
    height: 1px;
    width: 24px;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .navigation {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 111px;
    left: 0;
    right: 0;
    background: #0c141c;
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter) 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transition:
      opacity 0.2s,
      visibility 0.2s;
  }
  .navigation.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .navigation a {
    padding: 12px 0;
    min-height: 44px;
    font-size: 1rem;
  }
  .navigation .nav-contact {
    margin: 0;
  }
  .navigation a[aria-current]::after {
    bottom: 8px;
  }
  .nav-contact span {
    float: right;
  }
  .hero {
    min-height: max(750px, 100svh);
    align-items: end;
  }
  .hero-art {
    object-position: 64% center;
  }
  .hero-shade {
    background:
      linear-gradient(
        0deg,
        rgba(8, 17, 24, 0.95),
        rgba(8, 17, 24, 0.7) 35%,
        rgba(8, 17, 24, 0.15) 74%,
        rgba(8, 17, 24, 0.5)
      ),
      linear-gradient(90deg, rgba(8, 17, 24, 0.4), transparent);
  }
  .hero-content {
    padding-top: 270px;
    padding-bottom: 145px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }
  .short-rule {
    width: 22px;
    margin-right: 10px;
  }
  .hero h1 {
    font-size: clamp(4.25rem, 14vw, 6rem);
    margin: 23px 0 20px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-link {
    margin-top: 20px;
    font-size: 0.875rem;
  }
  .hero-bottom {
    bottom: 25px;
    align-items: center;
  }
  .hero-edition {
    font-size: 0.75rem;
    max-width: 165px;
    line-height: 1.9;
    padding: 0;
    letter-spacing: 0.12em;
  }
  .hero-edition span {
    margin: 0 7px;
  }
  .hero-caption em {
    font-size: 1.2rem;
  }
  .hero-caption > span {
    font-size: 0.75rem;
  }
  .scroll-cue {
    display: none;
  }
  .gallery {
    padding-top: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-number {
    margin-bottom: 15px;
  }
  .section-intro {
    margin-top: 22px;
    font-size: 0.875rem;
  }
  .section-intro br {
    display: none;
  }
  .artwork-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .artwork-card-offset {
    margin-top: 0;
  }
  .artwork-image {
    aspect-ratio: 4/5;
  }
  .artwork-title {
    font-size: 1.85rem;
  }
  .artwork-meta {
    font-size: 0.75rem;
  }
  .gallery-note {
    margin-top: 28px;
    text-align: left;
    align-items: start;
    font-size: 0.875rem;
    padding-top: 10px;
  }
  .small-star {
    flex-shrink: 0;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 45px 75px;
  }
  .artist-portrait {
    width: calc(100% - 18px);
    max-width: 390px;
  }
  .portrait-caption {
    font-size: 0.75rem;
  }
  .about-content h2 {
    font-size: 3.2rem;
  }
  .medium-note {
    font-size: 0.75rem;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-block: 60px;
  }
  .contact h2 {
    font-size: 3.1rem;
  }
  .contact-email {
    font-size: 1.75rem;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-footer {
    flex-direction: row;
    align-items: center;
  }
  .form-footer p {
    max-width: 160px;
  }
  .submit-button {
    gap: 18px;
    white-space: nowrap;
    padding-inline: 18px;
  }
  .footer-top {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .footer-top p {
    order: 3;
    width: 100%;
    font-size: 1.25rem;
  }
  .footer-brand .brand-logo {
    width: 118px;
  }
  .footer-ornament {
    right: 16%;
    top: 22px;
    width: 130px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
  }
  .artwork-dialog {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
  }
  .dialog-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .dialog-image-wrap {
    padding: 16px;
  }
  .dialog-image-wrap img {
    height: 45svh;
  }
  .dialog-details {
    padding: 25px;
  }
  .dialog-details h2 {
    font-size: 2.6rem;
  }
  .dialog-close {
    top: 10px;
    right: 10px;
  }
  .dialog-details dl {
    margin: 20px 0;
  }
  .dialog-navigation {
    margin-top: 25px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 4.2rem;
  }
  .hero .eyebrow {
    letter-spacing: 0.07em;
  }
  .hero-edition {
    max-width: 125px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-footer {
    flex-direction: column;
    align-items: start;
  }
  .contact-email {
    font-size: 1.45rem;
  }
  .medium-note {
    gap: 10px;
  }
}
/* 8. Ana giriş: mevcut tipografi ve renklerle iki koleksiyon seçeneği. */
/* Üç sayfanın ortak üst logosu: aynı boyutlar ve ekranın tam merkezi. */
.site-header.site-header-centered {
  /* Büyütülen logo için üstte ve ince alt çizginin üzerinde boşluk bırak. */
  height: 194px;
}
.site-header.site-header-centered .brand-link {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-inline-start: 0;
  transform: translate(-50%, -50%);
}
.site-header.site-header-centered .brand-logo {
  width: 154px;
}
/* Eşit genişlikteki iki çiçek, ortadaki RAXANA logosunun merkezini korur. */
.site-header.site-header-centered .brand-lockup {
  gap: 12px;
}
.site-header.site-header-centered .brand-flower {
  display: block;
  width: 92px;
  height: auto;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.brand-lockup:hover .brand-flower {
  opacity: 0.8;
}
.site-header.site-header-centered .menu-toggle {
  margin-left: auto;
}
@media (max-width: 700px) {
  .site-header.site-header-centered { height: 164px; }
  .site-header.site-header-centered .brand-logo { width: 122px; }
  .site-header.site-header-centered .brand-lockup { gap: 6px; }
  .site-header.site-header-centered .brand-flower { width: 52px; }
  /* Mobil menü, sağdaki çiçeğin üzerinde ayrı bir dokunma alanında kalır. */
  .site-header.site-header-centered .menu-toggle {
    position: absolute;
    top: 12px;
    right: var(--gutter);
    margin: 0;
  }
  .site-header-centered .navigation { top: 163px; }
}
@media (min-width: 701px) {
  /* Dar masaüstü ekranlarında bağlantılar logoyla çakışmadan sağda satıra geçer. */
  .site-header-centered .navigation {
    margin-left: auto;
    max-width: calc(50% - 204px);
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px clamp(12px, 1.4vw, 24px);
  }
  .site-header-centered .navigation .nav-contact {
    margin-left: 0;
  }
}
@media (min-width: 701px) and (max-width: 1000px) {
  .site-header.site-header-centered .brand-lockup { gap: 8px; }
  .site-header.site-header-centered .brand-flower { width: 64px; }
  .site-header-centered .navigation { max-width: calc(50% - 172px); }
}
.hero .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.collection-hero {
  background: var(--background);
}
/* Fresk sağdan belirir; sol kenarı metin alanına çizgisiz biçimde karışır. */
.collection-hero .hero-art-fresco {
  left: auto;
  right: 0;
  width: 78%;
  object-position: 50% 52%;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
}
/* Üstte logo ve menü okunur kalır; altta galeriyle aynı lacivertte sonlanır. */
.collection-hero .hero-shade {
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12,20,28,.97) 0%, rgba(12,20,28,.83) 18%, rgba(12,20,28,.22) 38%, transparent 55%),
    linear-gradient(0deg, #0c141c 0%, rgba(12,20,28,.96) 5%, rgba(12,20,28,.64) 18%, transparent 43%),
    linear-gradient(90deg, #0c141c 0%, rgba(12,20,28,.9) 23%, rgba(12,20,28,.48) 42%, transparent 65%);
}
/* Fotoğraf yüklenince tek seferlik hafif bir açılış; sürekli hareket yok. */
.hero-art-fresco.is-ready {
  animation: fresco-reveal 1.8s cubic-bezier(.2,.65,.3,1) both;
}
@keyframes fresco-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.collection-choices {
  width: min(43vw, 540px);
  margin-top: 35px;
}
.collection-choice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 15px;
  padding: 18px 0 24px;
  border-bottom: 1px solid rgba(197, 172, 122, 0.38);
}
.collection-choice + .collection-choice {
  padding-top: 27px;
}
.choice-number {
  align-self: center;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.choice-name {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.75rem, 4.45vw, 4.25rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.choice-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform 0.2s;
}
.collection-choice:hover .choice-name,
.collection-choice:focus-visible .choice-name {
  color: var(--gold-light);
}
.collection-choice:hover .choice-arrow {
  transform: translate(4px, -4px);
}
.collection-hero .hero-content {
  padding-top: 190px;
  padding-bottom: 160px;
}
.art-introduction {
  padding-top: 250px;
  padding-bottom: 46px;
}
.art-introduction h1 {
  width: fit-content;
  margin: 24px 0 20px;
  font-size: clamp(4.5rem, 7vw, 7rem);
  letter-spacing: -0.035em;
}
.art-page .gallery { padding-top: 45px; }
/* Aksesuar görselleri henüz verilmedi: ürün uydurmadan ayrı bir stüdyo giriş sayfası. */
.accessories-hero {
  background: radial-gradient(ellipse at 83% 43%, #18262b 0%, #0c141c 65%);
}
.accessories-hero .hero-content {
  padding-top: 206px;
}
.accessories-hero h1 {
  font-size: clamp(4.25rem, 8vw, 8rem);
}
.accessories-hero .hero-description {
  max-width: 410px;
}
.accessory-inquiries {
  margin-top: 30px;
}
.accessory-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.accessory-categories a {
  padding-block: 8px;
  color: var(--gold-light);
  border-bottom: 1px solid var(--line);
}
.accessory-categories a:hover { border-color: var(--gold); }
.accessory-categories > span { color: var(--gold); font-size: 0.75rem; }
.accessory-inquiries .contact-email {
  width: fit-content;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  margin-top: 0;
}
.accessory-return {
  margin-top: 20px;
  color: var(--muted);
}
@media (min-width: 701px) and (max-width: 1000px) {
  .navigation { gap: 1.3rem; }
  .navigation .nav-contact { margin-left: 0; }
  .navigation .nav-contact span { margin-left: 10px; }
  .collection-choices { width: min(49vw, 460px); }
  .choice-name { font-size: clamp(2.5rem, 4.7vw, 3.75rem); }
  .collection-choice { gap: 12px; grid-template-columns: 20px minmax(0,1fr) 25px; }
}
@media (max-width: 700px) {
  .collection-hero .hero-art-fresco {
    width: 100%;
    object-position: 53% 50%;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .collection-hero .hero-shade {
    background: linear-gradient(180deg,
      rgba(12,20,28,.97) 0%, rgba(12,20,28,.82) 18%,
      rgba(12,20,28,.28) 35%, rgba(12,20,28,.82) 54%,
      rgba(12,20,28,.97) 80%, #0c141c 100%);
  }
  .collection-hero .hero-content { padding-top: 310px; padding-bottom: 160px; }
  .collection-choices { width: min(100%, 450px); margin-top: 25px; }
  .collection-choice { gap: 13px; padding-block: 15px 20px; grid-template-columns: 19px minmax(0,1fr) 27px; }
  .collection-choice + .collection-choice { padding-top: 22px; }
  .choice-name { font-size: clamp(2.35rem, 8.1vw, 3.7rem); }
  .choice-arrow { font-size: 1.35rem; }
  .art-introduction { padding-top: 208px; padding-bottom: 28px; }
  .art-introduction h1 { font-size: 4.5rem; }
  .art-page .gallery { padding-top: 25px; }
  .accessories-hero .hero-content { padding-top: 240px; padding-bottom: 115px; }
  .accessories-hero h1 { font-size: clamp(3.9rem, 13.8vw, 6rem); }
}
@media (max-width: 380px) {
  .collection-choice { grid-template-columns: 15px minmax(0,1fr) 22px; gap: 8px; }
  .choice-name { font-size: 2rem; }
  .collection-hero .hero-edition { max-width: 100px; }
}
/* Hareket azaltma tercihini ve yakınlaştırılmış metin kullanımını destekle. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
