@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Manrope:wght@400;500;600;700&display=swap');
:root {
  --white: #fff;
  --ink: #302e29;
  --muted: #78756d;
  --gold: #938063;
  --line: #e8e5df;
  --cream: #f8f7f3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

/* Okları mobilde emojiye dönüşmeden, her cihazda aynı çizgilerle gösterir. */
.icon-arrow {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button .icon-arrow {
  font-size: 18px;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

p {
  line-height: 1.95;
  color: var(--muted);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  font-size: clamp(54px, 6.3vw, 94px);
  line-height: 1.03;
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.14;
  letter-spacing: -1px;
}

em {
  font-weight: 400;
  color: var(--gold);
}

.announcement {
  text-align: center;
  padding: 11px 20px;
  background: var(--cream);
  font-size: 10px;
  letter-spacing: 1.5px;
  border-bottom: 1px solid var(--line);
}

.site-header {
  height: 104px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  background: white;
  z-index: 5;
}

/* Marka görseli özgün oranında, masaüstü ve mobil için ölçeklenir. */
.wordmark {
  display: inline-flex;
  align-items: center;
  width: 176px;
  max-width: 100%;
  flex-shrink: 0;
  line-height: 0;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  gap: 38px;
}

.site-header nav a {
  font-size: 12px;
  position: relative;
  padding: 12px 0;
}

.site-header nav a:after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}

.site-header nav a:hover:after {
  width: 100%;
}

.contact-link {
  font-size: 11px;
}

.contact-link span {
  margin-left: 22px;
  font-size: 17px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 23px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.hero-copy {
  padding: 78px 10% 34px 12%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 2.4px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 26px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p {
  font-size: 13px;
  margin-bottom: 30px;
  max-width: 340px;
}

.button {
  background: var(--ink);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 19px 25px;
  font-size: 11px;
  transition: background 0.2s;
}

.button:hover {
  background: var(--gold);
}

.button span {
  font-size: 18px;
}

.hero-foot {
  margin-top: auto;
  padding-top: 42px;
  color: var(--muted);
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.little-star {
  font-size: 25px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: #eee7dc;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center;
}

.image-caption {
  position: absolute;
  bottom: 25px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 9px;
  letter-spacing: 2px;
  text-shadow: 0 1px 8px #000;
}

.values-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
  border-block: 1px solid var(--line);
  min-height: 76px;
  font-size: 9px;
  letter-spacing: 1.8px;
}

.values-strip i {
  font-size: 23px;
  font-style: normal;
  color: #b5a68d;
}

.section {
  padding: 88px 6%;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  margin-bottom: 13px;
}

.section-heading h2 {
  margin: 0;
}

.text-link {
  display: inline-block;
  font-size: 11px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
}

.text-link:hover {
  color: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card[hidden] {
  display: none;
}

.product-image {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  aspect-ratio: 0.85;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}

.product-card:hover img {
  transform: scale(1.07);
}

.product-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--gold);
}

.product-meta {
  padding: 19px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.product-meta h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.product-meta > span {
  font-size: 9px;
  color: var(--muted);
}

.collection-note {
  font-size: 10px;
  margin: 20px 0 0;
}

.story-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.story-art {
  min-height: 480px;
  background: #eeece5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-art img {
  height: 440px;
  width: 440px;
  transform: rotate(-13deg);
}

.story-art > span {
  position: absolute;
  bottom: 30px;
  left: 35px;
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  color: var(--gold);
}

.story-copy {
  padding: 80px 14%;
  align-content: center;
}

.story-copy p {
  margin-bottom: 28px;
}

.care {
  text-align: center;
  padding-block: 90px;
}

.care .eyebrow {
  margin-bottom: 18px;
}

.care h2 {
  margin-bottom: 20px;
}

.care p {
  margin-bottom: 26px;
}

footer {
  padding: 60px 6% 0;
  border-top: 1px solid var(--line);
  background: #fcfbf9;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 55px;
}

.footer-top p {
  font-size: 11px;
  margin: 20px 0 0;
}

.footer-top h3 {
  font-size: 9px;
  letter-spacing: 1.6px;
  margin: 6px 0 24px;
  font-weight: 600;
}

.footer-top > div > a:not(.wordmark) {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
}

.footer-note {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: var(--muted);
}

.page-heading {
  max-width: 820px;
}

.page-heading h1 {
  font-size: 64px;
  margin-bottom: 25px;
}

.filters {
  display: flex;
  gap: 12px;
  margin: 35px 0;
}

.filter {
  padding: 12px 22px;
  background: white;
  color: var(--muted);
  border: 1px solid var(--line);
}

.filter.active,
.filter:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  margin-top: 30px;
}

.detail-image {
  background: var(--cream);
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-copy {
  padding: 35px 0;
}

.detail h1 {
  font-size: 66px;
  margin-bottom: 24px;
}

.muted {
  font-size: 11px;
}

.detail .button {
  margin: 15px 0 30px;
}

.detail details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

summary {
  cursor: pointer;
}

details p {
  margin: 20px 0 0;
  font-size: 12px;
}

.editorial {
  max-width: 1000px;
  margin: auto;
  min-height: 65vh;
  padding-block: 90px;
}

.editorial > p {
  max-width: 660px;
  font-size: 15px;
}

.editorial blockquote {
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
  color: var(--gold);
  margin: 50px 0;
}

.notice {
  background: var(--cream);
  padding: 35px;
  margin: 35px 0;
}

.notice h2 {
  font-size: 34px;
}

.notice p {
  margin: 0;
}

.care-list {
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 30px;
}

.care-list h2 {
  font-size: 28px;
  margin-top: 30px;
}

@media (min-width: 1600px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 110px;
  }
}

@media (max-width: 1000px) {
  .hero {
    min-height: 580px;
  }

  .hero-copy {
    padding-top: 65px;
  }

  .site-header {
    padding-inline: 5%;
  }

  .site-header nav {
    gap: 22px;
  }

  .values-strip {
    gap: 25px;
    font-size: 8px;
  }

  .product-grid {
    gap: 16px;
  }

  .product-meta {
    display: block;
  }

  .product-meta > span {
    display: block;
    margin-top: 6px;
  }

  .story-copy {
    padding: 55px 10%;
  }

  .footer-top {
    gap: 25px;
  }

  .detail h1 {
    font-size: 52px;
  }
}

@media (max-width: 650px) {
  .announcement {
    font-size: 8px;
  }

  .site-header {
    height: 85px;
    padding-inline: 6%;
  }

  .wordmark {
    width: 132px;
  }

  .contact-link {
    margin-left: auto;
    margin-right: 22px;
    font-size: 10px;
  }

  .contact-link span {
    margin-left: 7px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 6%;
    border-bottom: 1px solid var(--line);
  }

  .site-header nav.open {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 47px 7% 35px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.7px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 67px;
  }

  .hero p {
    font-size: 12px;
    margin-bottom: 22px;
  }

  .hero-foot {
    padding-top: 27px;
  }

  .hero-visual {
    height: 390px;
  }

  .hero-visual img {
    object-position: center 45%;
  }

  .values-strip {
    padding: 21px 15px;
    gap: 13px;
    font-size: 7px;
    letter-spacing: 0.7px;
    min-height: 70px;
    text-align: center;
  }

  .values-strip i {
    font-size: 15px;
  }

  .section {
    padding: 55px 6%;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .product-meta h3 {
    font-size: 21px;
  }

  .product-meta {
    padding: 13px 0;
  }

  .product-image {
    aspect-ratio: 0.85;
  }

  .collection-note {
    font-size: 9px;
  }

  .story-band {
    grid-template-columns: 1fr;
  }

  .story-art {
    min-height: 340px;
  }

  .story-art img {
    height: 330px;
  }

  .story-copy {
    padding: 48px 7%;
  }

  .story-copy h2 {
    font-size: 38px;
  }

  .care h2 {
    font-size: 36px;
  }

  .care p {
    font-size: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-note {
    font-size: 25px;
  }

  .footer-bottom {
    gap: 25px;
    font-size: 8px;
  }

  .filters {
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter {
    font-size: 11px;
    padding: 10px 14px;
  }

  .page-heading h1 {
    font-size: 48px;
  }

  .detail {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .detail-copy {
    padding: 15px 0;
  }

  .detail h1 {
    font-size: 50px;
  }

  .editorial h1 {
    font-size: 54px;
  }

  .editorial > p {
    font-size: 13px;
  }

  .editorial blockquote {
    font-size: 32px;
  }

  .notice {
    padding: 25px;
  }
}

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

  *,
  *:before,
  *:after {
    transition: none !important;
  }
}


/* Koleksiyon: beş kategori ve ayrı ürün kartları. */
.catalog-filters {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.catalog-filters .filter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.filter-count {
  font-size: 10px;
  opacity: 0.8;
}

.catalog-status {
  font-size: 11px;
  margin-bottom: 38px;
}

.catalog-category {
  border-top: 1px solid var(--line);
  padding-top: 36px;
  margin-bottom: 56px;
}

.catalog-category[hidden] {
  display: none;
}

.category-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.category-heading .eyebrow {
  margin-bottom: 12px;
}

.category-heading h2 {
  margin-bottom: 10px;
}

.category-heading p {
  margin-bottom: 0;
  font-size: 12px;
}

.category-total {
  white-space: nowrap;
  color: var(--gold);
  font-size: 11px;
}

.catalog .product-meta {
  display: block;
}

.catalog .product-meta > span {
  display: block;
  margin-top: 8px;
  letter-spacing: 1px;
}

.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 24px 12px;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.placeholder-monogram {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 54px;
  line-height: 1;
  opacity: 0.55;
}

.placeholder-code {
  font-size: 8px;
  letter-spacing: 1.5px;
}

.detail-image > .product-placeholder {
  min-height: 430px;
}

.product-code {
  font-size: 11px;
  letter-spacing: 1.3px;
  color: var(--gold);
}

@media (max-width: 650px) {
  .catalog-filters .filter {
    gap: 8px;
  }

  .category-heading {
    align-items: flex-start;
    gap: 16px;
  }

  .category-total {
    margin-top: 4px;
    font-size: 10px;
  }

  .category-heading h2 {
    font-size: 34px;
  }

  .product-placeholder {
    min-height: 0;
  }

  .detail-image > .product-placeholder {
    min-height: 320px;
  }
}


/* Yalnızca ana sayfadaki hikâye bölümünün yeni küpe görseli. */
.story-art.story-art--earrings {
  min-height: 480px;
  aspect-ratio: 4 / 3;
  background: #f8f7f3;
  isolation: isolate;
}

.story-art--earrings > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.story-art--earrings > span {
  z-index: 1;
  left: clamp(24px, 3vw, 42px);
  bottom: 26px;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--ink);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.7);
}

@media (max-width: 650px) {
  .story-art.story-art--earrings {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .story-art--earrings > span {
    left: 24px;
    bottom: 22px;
    font-size: 24px;
  }
}


/* Yalnızca ana sayfanın üst bölümündeki yeni küpe görseli. */
.hero-visual.hero-visual--earrings {
  background: #f8f7f3;
}

.hero-visual--earrings > img {
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-visual--earrings .image-caption {
  color: var(--ink);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.75);
}
