:root {
  --porcelain: #f4efe7;
  --paper: #fffaf2;
  --espresso: #241812;
  --clay: #b96f4b;
  --sage: #9dac8c;
  --sage-dark: #64735b;
  --gold: #c6a15b;
  --muted: #76685f;
  --line: rgba(36, 24, 18, 0.14);
  --soft-line: rgba(36, 24, 18, 0.08);
  --radius: 32px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--espresso);
  background:
    radial-gradient(circle at 80% 8%, rgba(185, 111, 75, 0.16), transparent 32%),
    radial-gradient(circle at 15% 55%, rgba(157, 172, 140, 0.22), transparent 34%),
    var(--porcelain);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

section {
  scroll-margin-top: 90px;
}

.soft-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--soft-line) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(244, 239, 231, 0.92);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--paper);
  font-family: "Prata", serif;
  font-size: 15px;
  letter-spacing: -0.08em;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--clay);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--espresso);
}

/* Shared */
.label {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--espresso);
  color: var(--paper);
}

.button.secondary {
  background: var(--paper);
  color: var(--espresso);
  border: 1px solid var(--line);
}

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 86px);
  padding: 76px 22px 52px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.hero-content h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Prata", serif;
  font-size: clamp(52px, 7.8vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero-text {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* Hero Art */
.hero-art {
  position: relative;
  min-height: 590px;
}

.fabric-sheet {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(36, 24, 18, 0.12);
}

.fabric-sheet span {
  color: rgba(36, 24, 18, 0.52);
  font-size: 13px;
  font-weight: 800;
}

.fabric-sheet strong {
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.sheet-one {
  width: 260px;
  height: 360px;
  left: 0;
  top: 70px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
    var(--sage);
  transform: rotate(-7deg);
}

.sheet-two {
  width: 250px;
  height: 330px;
  right: 30px;
  top: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent),
    var(--clay);
  color: var(--paper);
  transform: rotate(8deg);
}

.sheet-two span {
  color: rgba(255, 250, 242, 0.7);
}

.sheet-three {
  width: 280px;
  height: 330px;
  left: 110px;
  bottom: 20px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(36, 24, 18, 0.05) 0 2px,
      transparent 2px 11px
    ),
    var(--paper);
  transform: rotate(2deg);
}

.spec-card {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(300px, 80%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 24px 70px rgba(36, 24, 18, 0.14);
}

.spec-card p {
  margin: 0;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spec-card h2 {
  margin: 10px 0 18px;
  font-family: "Prata", serif;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.spec-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.spec-card li::before {
  content: "— ";
  color: var(--clay);
}

/* Studio */
.studio-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 22px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  border-top: 1px solid var(--line);
}

.studio-title h2,
.section-header h2,
.quality-content h2,
.inquiry-copy h2 {
  margin: 0;
  font-family: "Prata", serif;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.studio-copy {
  display: grid;
  gap: 18px;
  align-content: end;
}

.studio-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 22px;
}

.section-header {
  max-width: 860px;
  margin-bottom: 34px;
}

/* Services */
.services-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.services-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.services-list span {
  color: var(--clay);
  font-weight: 800;
}

.services-list h3 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.services-list p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* Statement */
.statement-section {
  padding: 80px 22px;
  background: var(--espresso);
  color: var(--paper);
}

.statement-section div {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.statement-section span {
  font-family: "Prata", serif;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.statement-section span:nth-child(2) {
  color: var(--sage);
}

.statement-section span:nth-child(3) {
  color: var(--clay);
}

/* Journey */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.journey-grid article {
  min-height: 310px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 250, 242, 0.7);
  border: 1px solid var(--line);
}

.journey-grid small {
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.journey-grid h3 {
  margin: 96px 0 10px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.journey-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Categories */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-list a {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--espresso);
  font-weight: 800;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.category-list a:hover {
  background: var(--sage-dark);
  color: var(--paper);
  transform: translateY(-2px);
}

/* Quality */
.quality-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 22px;
}

.quality-content {
  padding: clamp(28px, 5vw, 58px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 250, 242, 0.22), transparent 34%),
    var(--sage-dark);
  color: var(--paper);
}

.quality-content .label {
  color: #f2d49a;
}

.quality-columns {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  margin-top: 34px;
}

.quality-columns p {
  margin: 0;
  font-size: 19px;
  color: rgba(255, 250, 242, 0.86);
}

.quality-columns ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quality-columns li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.12);
  color: var(--paper);
  font-weight: 700;
}

/* Inquiry */
.inquiry-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: clamp(24px, 5vw, 54px);
  border-radius: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(36, 24, 18, 0.1);
}

.inquiry-copy p:not(.label) {
  color: var(--muted);
  font-size: 18px;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-links a {
  color: var(--clay);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.inquiry-form label {
  color: var(--espresso);
  font-size: 14px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea {
  display: block;
  margin-top: 7px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8f1e7;
  color: var(--espresso);
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--clay);
  background: #fffaf2;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Footer */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 22px 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 520px;
  }

  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 24px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(36, 24, 18, 0.16);
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 15px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .studio-section,
  .quality-columns,
  .inquiry-card {
    grid-template-columns: 1fr;
  }

  .services-list article {
    grid-template-columns: 80px 1fr;
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero,
  .section,
  .studio-section,
  .quality-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 48px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .fabric-sheet,
  .spec-card {
    position: static;
    width: 100%;
    height: auto;
    min-height: 190px;
    transform: none;
  }

  .fabric-sheet strong {
    margin-top: 70px;
  }

  .spec-card {
    max-width: 100%;
  }

  .services-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid article {
    min-height: auto;
  }

  .journey-grid h3 {
    margin-top: 52px;
  }

  .statement-section {
    padding: 58px 16px;
  }

  .quality-content,
  .inquiry-card {
    border-radius: 28px;
  }

  .footer {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer div {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 10px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
