:root {
  --brand: #5f0f0e;
  --brand-dark: #370807;
  --brand-soft: #8a2320;
  --ink: #241715;
  --muted: #76615d;
  --paper: #fff8f0;
  --linen: #f2e5d3;
  --cream: #fbefe0;
  --line: rgba(95, 15, 14, 0.16);
  --shadow: 0 20px 60px rgba(55, 8, 7, 0.14);
  --radius: 8px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(95, 15, 14, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf4 0%, var(--paper) 48%, #f7ead9 100%);
  background-size:
    42px 42px,
    auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--brand);
  border-bottom: 1px solid rgba(255, 248, 240, 0.16);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff8f0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-link img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-link span {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: #fff8f0;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 248, 240, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 240, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 248, 240, 0.1);
  color: #fff8f0;
  font-size: 1.45rem;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 66px 0 40px;
  background:
    radial-gradient(circle at 72% 34%, rgba(95, 15, 14, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(95, 15, 14, 0.08), transparent 42%);
}

.hero-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brand-dark);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #5d4541;
  font-size: 1.18rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  color: #fffaf4;
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(95, 15, 14, 0.22);
}

.button.secondary {
  color: var(--brand);
  border-color: var(--line);
  background: rgba(255, 248, 240, 0.72);
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.logo-medallion {
  position: absolute;
  top: 18px;
  right: 12px;
  width: clamp(164px, 17vw, 196px);
  padding: 8px;
  z-index: 3;
  border: 1px solid rgba(95, 15, 14, 0.12);
  border-radius: 26px;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 22px 48px rgba(72, 9, 8, 0.2);
  transform: rotate(2deg);
}

.logo-medallion img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}

.canvas-stack {
  position: absolute;
  inset: 70px 0 0 18px;
}

.canvas {
  position: absolute;
  border: 14px solid #fbf4e9;
  background:
    linear-gradient(90deg, rgba(95, 15, 14, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(95, 15, 14, 0.06) 1px, transparent 1px), #fffdf8;
  background-size: 28px 28px;
  box-shadow: var(--shadow);
}

.canvas.large {
  width: 74%;
  height: 370px;
  right: 36px;
  top: 42px;
}

.canvas.medium {
  width: 52%;
  height: 280px;
  left: 0;
  top: 0;
  transform: rotate(-5deg);
  background-color: #b29572;
}

.canvas.small {
  width: 38%;
  height: 210px;
  left: 62px;
  bottom: 2px;
  transform: rotate(4deg);
  background-color: #fff6ea;
}

.section {
  padding: 88px 0;
}

.section.brand-band {
  color: #fff8f0;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.section.brand-band h2,
.section.brand-band h3,
.section.brand-band p {
  color: #fff8f0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 12px 34px rgba(95, 15, 14, 0.08);
}

.brand-band .card {
  border-color: rgba(255, 248, 240, 0.18);
  background: rgba(255, 248, 240, 0.09);
  box-shadow: none;
}

.product-visual {
  height: 176px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  border: 10px solid #fff8ef;
  background:
    linear-gradient(120deg, rgba(95, 15, 14, 0.16), transparent 36%),
    repeating-linear-gradient(90deg, rgba(95, 15, 14, 0.1) 0 1px, transparent 1px 18px), #f7ebdc;
  box-shadow: inset 0 0 0 1px rgba(95, 15, 14, 0.08);
}

.product-hero h1 {
  max-width: 980px;
}

.product-category-section {
  background: var(--cream);
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-category {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-category:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 15, 14, 0.34);
  box-shadow: 0 18px 44px rgba(55, 8, 7, 0.1);
}

.product-category > span {
  margin-top: 28px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-category h3 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.product-category p {
  margin-bottom: 24px;
}

.product-category > strong {
  margin-top: auto;
  color: var(--brand);
  font-size: 0.94rem;
}

.category-shape {
  height: 132px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(95, 15, 14, 0.08), rgba(242, 229, 211, 0.58));
}

.category-shape i {
  display: block;
  border: 8px solid #fffaf4;
  background: #fffdf8;
  box-shadow: 0 12px 28px rgba(55, 8, 7, 0.14);
}

.category-shape.rectangular i {
  width: 102px;
  height: 72px;
}

.category-shape.oval i {
  width: 104px;
  height: 72px;
  border-radius: 50%;
}

.category-shape.custom i {
  width: 86px;
  height: 86px;
  transform: rotate(9deg);
  border-radius: 22px 4px 28px 6px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand);
  font-size: 0.94rem;
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.canvas-sizes {
  background: #fffaf4;
}

#dikdortgen-kare,
#oval-daire,
#ozel-olcu {
  scroll-margin-top: 82px;
}

.shape-sizes {
  background: var(--cream);
}

.oval-overview {
  background: var(--brand-dark);
}

.circle-group {
  background: radial-gradient(circle at 88% 12%, rgba(95, 15, 14, 0.12), transparent 25%), rgba(255, 255, 255, 0.72);
}

.simple-size-listing {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.simple-size-label {
  display: grid;
  place-content: center;
  min-height: 180px;
  padding: 24px;
  background: var(--brand);
  text-align: center;
}

.simple-size-label span,
.simple-size-label strong {
  display: block;
  color: #fff8f0;
}

.simple-size-label span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1;
}

.simple-size-label strong {
  margin-top: 8px;
  color: rgba(255, 248, 240, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diameter-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(84px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diameter-options li {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fffaf4;
  font-weight: 900;
}

.special-size {
  background: #fffaf4;
}

.special-size-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(42px, 8vw, 106px);
  align-items: center;
}

.special-size-inner > div > p:not(.eyebrow) {
  max-width: 620px;
}

.special-size-inner .button {
  margin-top: 18px;
}

.special-size-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.special-size-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.special-size-list li > span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.special-size-list strong {
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.special-size-list p {
  margin: 5px 0 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.size-guide-head {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 7vw, 92px);
  align-items: end;
  margin-bottom: 42px;
}

.size-guide-head > p {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--brand);
}

.size-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
  border: 1px solid var(--line);
  background: var(--brand);
}

.size-overview > div {
  padding: 26px 28px;
  border-right: 1px solid rgba(255, 248, 240, 0.2);
}

.size-overview > div:last-child {
  border-right: 0;
}

.size-overview strong,
.size-overview span {
  display: block;
  color: #fff8f0;
}

.size-overview strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.size-overview span {
  margin-top: 4px;
  color: rgba(255, 248, 240, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.size-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.size-group {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.size-group.featured {
  background: var(--cream);
}

.size-group-head {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.size-group-head > span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.size-group-head h3 {
  font-size: 1.35rem;
}

.size-group-head p {
  margin: 7px 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.size-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.size-chip-list li {
  min-width: 70px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fffaf4;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.size-group .text-link {
  margin-top: 24px;
}

.size-note {
  margin: 22px 0 0;
  font-size: 0.9rem;
  font-style: italic;
}

.product-faq {
  background: var(--cream);
}

.product-faq-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(36px, 7vw, 92px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: var(--brand-dark);
  font-size: 1.12rem;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 400;
}

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

.faq-list details p {
  margin: -6px 48px 24px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.atelier-panel {
  min-height: 430px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(95, 15, 14, 0.2), rgba(95, 15, 14, 0.02)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(95, 15, 14, 0.07) 35px), var(--linen);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stat {
  padding: 20px;
  border-radius: var(--radius);
  background: #fff8f0;
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
}

.page-hero {
  padding: 92px 0 64px;
  background: linear-gradient(135deg, rgba(95, 15, 14, 0.13), rgba(255, 248, 240, 0));
}

.page-hero p {
  max-width: 760px;
}

/* About page */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(95, 15, 14, 0.12), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f7e9d8 100%);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(95, 15, 14, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 15, 14, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 6%, #000 64%);
}

.about-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.68fr);
  gap: clamp(52px, 8vw, 106px);
  align-items: center;
}

.about-intro h1 {
  max-width: 850px;
  font-size: clamp(3rem, 6.35vw, 6.1rem);
}

.about-intro .lead {
  max-width: 770px;
}

.about-origin {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  overflow: hidden;
  border: 12px solid #fffaf3;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(242, 229, 211, 0.34)),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(95, 15, 14, 0.025) 5px 6px), var(--linen);
  box-shadow: 0 30px 72px rgba(55, 8, 7, 0.18);
  transform: rotate(1.5deg);
}

.about-origin::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -94px;
  top: -92px;
  border: 44px solid var(--brand);
  border-radius: 50%;
  opacity: 0.9;
}

.about-origin-kicker,
.about-origin-footer {
  position: relative;
  z-index: 1;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-origin-center {
  position: relative;
  z-index: 1;
}

.about-origin-center span,
.about-origin-center strong,
.about-origin-center em {
  display: block;
  color: var(--brand-dark);
}

.about-origin-center span {
  margin-bottom: 5px;
  font-size: 1rem;
}

.about-origin-center strong,
.about-origin-center em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 4.5vw, 4.7rem);
  font-weight: 400;
  line-height: 0.94;
}

.about-origin-center em {
  color: var(--brand);
}

.about-origin-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-origin-footer i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.about-story {
  background: #fffaf4;
}

.about-section-head {
  max-width: 800px;
  margin-bottom: 56px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-story-card {
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.about-story-card:nth-child(2) {
  background: var(--cream);
}

.about-story-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 96px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-story-index i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.about-story-label {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
}

.about-story-card > p:last-child {
  margin-bottom: 0;
}

.about-craft {
  padding: clamp(76px, 9vw, 122px) 0;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.about-craft-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px 84px;
  align-items: end;
}

.about-craft .eyebrow {
  color: rgba(255, 248, 240, 0.62);
}

.about-craft h2 {
  max-width: 700px;
  color: #fff8f0;
}

.about-craft-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 248, 240, 0.22);
}

.about-craft-list span {
  padding: 18px 10px 18px 0;
  border-bottom: 1px solid rgba(255, 248, 240, 0.22);
  color: #fff8f0;
  font-weight: 800;
}

.about-craft-list span:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 248, 240, 0.22);
}

.about-button {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--brand-dark);
  background: #fff8f0;
}

.about-button:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* Vision page */
.vision-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(95, 15, 14, 0.13), transparent 29%),
    linear-gradient(135deg, #fffaf4 0%, #f8ecdd 100%);
}

.vision-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(95, 15, 14, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 15, 14, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 68%);
}

.vision-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.7fr);
  gap: clamp(54px, 8vw, 108px);
  align-items: center;
}

.vision-intro h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
}

.vision-intro .lead {
  max-width: 770px;
}

.vision-canvas {
  position: relative;
  min-height: 440px;
  padding: 38px;
  overflow: hidden;
  border: 13px solid #fffaf3;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(242, 229, 211, 0.44)),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(95, 15, 14, 0.025) 5px 6px), var(--linen);
  box-shadow: 0 30px 72px rgba(55, 8, 7, 0.18);
  transform: rotate(2deg);
}

.vision-canvas::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -88px;
  bottom: -84px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.92;
}

.vision-canvas-number,
.vision-canvas-caption {
  position: relative;
  z-index: 1;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vision-canvas-mark {
  position: relative;
  z-index: 1;
  margin-top: 112px;
}

.vision-canvas-mark span,
.vision-canvas-mark strong {
  display: block;
  color: var(--brand-dark);
}

.vision-canvas-mark span {
  font-size: 1.05rem;
}

.vision-canvas-mark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 5vw, 5.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.92;
}

.vision-canvas-line {
  position: relative;
  z-index: 1;
  display: block;
  width: 72px;
  height: 2px;
  margin: 34px 0 17px;
  background: var(--brand);
}

.vision-principles {
  background: #fffaf4;
}

.vision-section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 8vw, 108px);
  align-items: end;
  margin-bottom: 54px;
}

.vision-section-head h2 {
  max-width: 720px;
}

.vision-section-head > p {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--brand);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.vision-card {
  position: relative;
  min-height: 325px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.vision-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 15, 14, 0.32);
  box-shadow: 0 18px 46px rgba(55, 8, 7, 0.1);
}

.vision-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 58px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.vision-card-top i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.vision-card-label {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vision-card h3 {
  max-width: 430px;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.vision-card > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
}

.vision-closing {
  padding: clamp(76px, 10vw, 130px) 0;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.vision-closing-inner {
  text-align: center;
}

.vision-closing .eyebrow {
  color: rgba(255, 248, 240, 0.64);
}

.vision-quote {
  max-width: 980px;
  margin: 18px auto 36px;
  color: #fff8f0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-style: italic;
  line-height: 1.14;
}

.vision-button {
  color: var(--brand-dark);
  background: #fff8f0;
}

.vision-button:hover {
  background: #fff;
  transform: translateY(-2px);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--brand);
  font-size: 1.2rem;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8f0;
}

.request-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 18px 48px rgba(55, 8, 7, 0.08);
}

.request-list {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.request-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.request-list li > span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.request-list strong {
  color: var(--brand-dark);
}

.request-list p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--brand-dark);
  font-weight: 800;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(95, 15, 14, 0.24);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

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

.site-footer {
  background: var(--brand-dark);
  color: #fff8f0;
  padding: 54px 0 24px;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 248, 240, 0.16);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-weight: 900;
}

.footer-logo img {
  width: 54px;
  height: 54px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 248, 240, 0.78);
}

.site-footer h3 {
  margin-bottom: 12px;
  color: #fff8f0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  margin: 22px 0 0;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.3);
  font-weight: 900;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-float:hover {
  background: #1fb85a;
  transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.error-page {
  min-height: 100vh;
}

.error-nav-button {
  min-height: 42px;
  color: #fff8f0;
  border-color: rgba(255, 248, 240, 0.28);
}

.error-main {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 64px 16px;
  background:
    radial-gradient(circle at 82% 18%, rgba(95, 15, 14, 0.14), transparent 28%),
    linear-gradient(135deg, #fffaf4, #f4e4d1);
}

.error-panel {
  width: min(820px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow);
}

.error-code {
  margin: 0 0 30px;
  color: rgba(95, 15, 14, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 10rem);
  line-height: 0.7;
}

.error-panel h1 {
  max-width: 680px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 248, 240, 0.18);
    border-radius: var(--radius);
    background: var(--brand);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-inner,
  .split,
  .contact-box,
  .footer-grid,
  .product-faq-inner,
  .size-guide-head,
  .special-size-inner,
  .about-hero-inner,
  .about-craft-inner,
  .vision-hero-inner,
  .vision-section-head {
    grid-template-columns: 1fr;
  }

  .about-origin {
    width: min(100%, 520px);
    min-height: 390px;
    margin: 0 auto;
  }

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

  .about-story-card {
    min-height: auto;
  }

  .about-story-index {
    margin-bottom: 44px;
  }

  .about-craft-list {
    max-width: 680px;
  }

  .size-groups {
    grid-template-columns: 1fr;
  }

  .product-categories {
    grid-template-columns: 1fr;
  }

  .simple-size-listing {
    grid-template-columns: 1fr;
  }

  .simple-size-label {
    min-height: 130px;
  }

  .product-category {
    min-height: 360px;
  }

  .vision-canvas {
    width: min(100%, 520px);
    min-height: 390px;
    margin: 0 auto;
  }

  .vision-section-head > p {
    max-width: 680px;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 420px;
  }

  .grid.three,
  .grid.two,
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-link span {
    display: none;
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .hero-art {
    min-height: 330px;
  }

  .logo-medallion {
    top: 8px;
    width: 126px;
    padding: 6px;
    right: 0;
    border-radius: 19px;
  }

  .logo-medallion img {
    border-radius: 14px;
  }

  .canvas.large {
    height: 250px;
    right: 8px;
  }

  .canvas.medium {
    height: 200px;
  }

  .canvas.small {
    height: 150px;
    left: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-hero {
    padding: 64px 0 72px;
  }

  .about-intro h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .about-origin {
    min-height: 330px;
    padding: 26px;
    border-width: 9px;
  }

  .about-section-head {
    margin-bottom: 36px;
  }

  .about-story-card {
    padding: 24px;
  }

  .about-story-index {
    margin-bottom: 34px;
  }

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

  .size-overview {
    grid-template-columns: 1fr;
  }

  .size-overview > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 240, 0.2);
  }

  .size-overview > div:last-child {
    border-bottom: 0;
  }

  .size-guide-head > p {
    padding-left: 16px;
  }

  .size-group {
    padding: 22px;
  }

  .product-category {
    min-height: auto;
    padding: 22px;
  }

  .product-category > strong {
    margin-top: 12px;
  }

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

  .about-craft-list span:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .vision-hero {
    padding: 64px 0 72px;
  }

  .vision-intro h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .vision-canvas {
    min-height: 330px;
    padding: 26px;
    border-width: 9px;
  }

  .vision-canvas-mark {
    margin-top: 82px;
  }

  .vision-section-head {
    margin-bottom: 36px;
  }

  .vision-section-head > p {
    padding-left: 16px;
  }

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

  .vision-card {
    min-height: auto;
    padding: 24px;
  }

  .vision-card-top {
    margin-bottom: 38px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px;
    font-size: 0.92rem;
  }
}
