:root {
  --color-primary: #9a6237;
  --color-primary-dark: #6f4225;
  --color-secondary: #e8dcd2;
  --color-accent: #d18a45;
  --color-text: #24211f;
  --color-muted: #6c625b;
  --color-background: #ffffff;
  --color-surface: #f5f1ed;
  --color-line: #e7dfd8;
  --color-dark: #333333;
  --color-white: #ffffff;
  --font-main: "Pretendard", system-ui, sans-serif;
  --container-width: 1480px;
  --header-height: clamp(72px, 5.833vw, 112px);
  --radius-small: 8px;
  --transition: 180ms ease;
}

/*
@font-face {
  font-family: "Pretendard";
  src: url("../assets/fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.65;
  word-break: keep-all;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol,
dl,
dd,
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 80px), var(--container-width));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(209, 138, 69, 0.8);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  top: clamp(18px, 2.411vw, 46.3px);
  left: 0;
  z-index: 20;
  width: 100%;
  color: var(--color-white);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.site-header__inner {
  min-height: var(--header-height);
  padding-bottom: clamp(6px, 0.443vw, 8.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__logo img {
  width: clamp(124px, 9.452vw, 181.48px);
  height: auto;
}

.site-header__nav {
  margin-top: clamp(20px, 2.151vw, 41.3px);
}

.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.948vw, 95px);
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  min-height: clamp(28px, 1.875vw, 36px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.458vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  transition: color var(--transition);
}

.site-header__link:hover,
.site-header__link:focus-visible {
  color: var(--color-white);
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-small);
  background: rgba(0, 0, 0, 0.14);
}

.site-header__toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-open .site-header__toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(620px, 56.25vw, 1080px);
  display: flex;
  align-items: flex-start;
  color: var(--color-white);
  background: url("../assets/images/hero-main.png") center / cover no-repeat #3b2b22;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: clamp(210px, 21.745vw, 417.5px);
  text-align: center;
}

.hero h1 {
  font-size: clamp(30px, 2.188vw, 42px);
  line-height: 1.35;
  font-weight: 800;
}

.hero__description {
  max-width: 820px;
  margin: clamp(22px, 1.927vw, 37px) auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 2.083vw, 40px);
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 34px;
  border: 0;
  border-radius: var(--radius-small);
  font-size: 16px;
  font-weight: 700;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button__icon {
  position: relative;
  width: 18px;
  height: 2px;
  flex: 0 0 18px;
  background: currentColor;
}

.button__icon::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.button--outline {
  width: clamp(340px, 22.135vw, 425px);
  height: clamp(58px, 3.438vw, 66px);
  min-width: 0;
  min-height: 0;
  margin-top: clamp(48px, 5.99vw, 115px);
  padding: 0;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #8b1530;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 0 6px rgba(255, 255, 255, 0.12);
  font-size: clamp(18px, 1.458vw, 28px);
  font-weight: 700;
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--color-white);
  background: #6f1025;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(255, 255, 255, 0.18);
}

.button--light {
  min-width: 360px;
  color: var(--color-primary-dark);
  background: var(--color-white);
}

.cta-banner .button--light {
  justify-content: space-between;
  min-width: 0;
  width: clamp(360px, 27.344vw, 525px);
  height: clamp(70px, 5.208vw, 100px);
  padding: 0 clamp(22px, 1.823vw, 35px);
  border-radius: clamp(10px, 0.885vw, 17px);
  color: #8B5E3C;
  background: rgba(255, 255, 255, 0.83);
  font-size: clamp(28px, 2.083vw, 40px);
  font-weight: 700;
  text-align: left;
}

.cta-banner .button--light .button__icon {
  width: clamp(20px, 1.362vw, 26.15px);
  height: clamp(11px, 0.729vw, 14px);
  flex: 0 0 clamp(20px, 1.362vw, 26.15px);
  background: url("../assets/icons/arrow_r.png") center / contain no-repeat;
}

.cta-banner .button--light .button__icon::before {
  content: none;
}

.cta-banner .button--light:hover .button__icon,
.cta-banner .button--light:focus-visible .button__icon {
  background-image: url("../assets/icons/arrow_wr.png");
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--color-white);
  background: var(--color-primary);
}

.button--submit {
  width: 100%;
  color: var(--color-white);
  background: var(--color-primary);
}

.button--submit:hover,
.button--submit:focus-visible {
  background: var(--color-primary-dark);
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--color-primary-dark);
  font-size: 14px;
  line-height: 1.5;
}

.form-status.is-error {
  color: #9f2d2d;
}

.feature-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

.feature-strip__grid {
  width: min(calc(100% - 80px), 1656px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 414px));
  justify-content: center;
}

.feature-card {
  position: relative;
  min-height: clamp(210px, 17.604vw, 338px);
  padding: clamp(34px, 3.021vw, 58px) clamp(26px, 2.292vw, 44px) clamp(30px, 2.396vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: clamp(28px, 2.266vw, 43.5px);
  right: 0;
  bottom: clamp(28px, 2.266vw, 43.5px);
  width: 1px;
  background: #DFDFDF;
}

.feature-card__label {
  display: block;
  margin-bottom: 0;
  color: #8B5E3C;
  font-size: clamp(14px, 1.042vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

.feature-card__icon {
  position: absolute;
  top: clamp(28px, 2.292vw, 44px);
  right: clamp(24px, 2.604vw, 50px);
  width: clamp(40px, 3.281vw, 63px);
  height: clamp(40px, 3.281vw, 63px);
  object-fit: contain;
  pointer-events: none;
}

.feature-card--lead .feature-card__label {
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 600;
}

.feature-card__title {
  color: #171717;
  font-size: clamp(20px, 1.458vw, 28px);
  line-height: 1.34;
  font-weight: 700;
}

.feature-card p {
  margin-top: clamp(12px, 1.146vw, 22px);
  color: var(--color-muted);
  font-size: clamp(14px, 0.938vw, 18px);
  line-height: 1.7;
  font-weight: 400;
}

.feature-card__more {
  position: absolute;
  right: clamp(72px, 7.031vw, 110px);
  top: clamp(136px, 11.563vw, 222px);
  width: clamp(26px, 1.719vw, 33px);
  height: clamp(14px, 0.938vw, 18px);
  background: url("../assets/icons/arrow_r.png") center / contain no-repeat;
}

.feature-card__more::before {
  content: none;
}

.intro-section {
  min-height: clamp(560px, 38.021vw, 730px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 4.792vw, 92px) 0 clamp(68px, 5.104vw, 98px);
  background: var(--color-surface);
}

.intro-section__inner {
  display: grid;
  grid-template-columns: clamp(420px, 38.542vw, 740px) clamp(560px, 37.5vw, 720px);
  gap: clamp(52px, 5.573vw, 107px);
  align-items: center;
  justify-content: center;
}

.intro-section__inner.container {
  width: fit-content;
  max-width: calc(100% - 80px);
}

.intro-section__image {
  overflow: hidden;
  border-radius: var(--radius-small);
  background: #c9c2bd;
  width: clamp(420px, 38.542vw, 740px);
  height: clamp(301px, 27.656vw, 531px);
}

.intro-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section h2 {
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: 1.3;
  font-weight: 600;
}

.intro-section__subtitle {
  margin-top: clamp(8px, 0.521vw, 10px);
  color: var(--color-text);
  font-size: clamp(20px, 1.458vw, 28px);
  line-height: 1.45;
  font-weight: 400;
}

.intro-section__body {
  margin-top: clamp(18px, 1.146vw, 22px);
  color: #504943;
  font-size: clamp(16px, 1.042vw, 20px);
  line-height: 1.85;
  font-weight: 400;
}

.intro-section__body p + p {
  margin-top: clamp(16px, 1.25vw, 24px);
}

.product-section {
  padding: clamp(72px, 5.208vw, 100px) 0 clamp(72px, 4.479vw, 86px);
  background: var(--color-white);
}

.section-heading {
  margin-bottom: 45px;
  text-align: center;
}

.section-heading h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}

.section-heading p {
  margin-top: 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

.product-section .section-heading {
  margin-bottom: clamp(40px, 3.177vw, 61px);
}

.product-section .section-heading h2 {
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: 1.2;
  font-weight: 700;
}

.product-section .section-heading p {
  margin-top: 11px;
  color: #8B5E3C;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.2;
  font-weight: 300;
}

.product-grid {
  width: min(calc(100% - 80px), 1638px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 546px));
  justify-content: center;
}

.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ddd5cf;
  width: 100%;
  aspect-ratio: 546 / 711;
  color: inherit;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  transition: background-color 240ms ease;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.product-card--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f1ed;
}

.product-card--logo img {
  width: min(54%, 220px);
  height: auto;
  object-fit: contain;
}

.product-card:hover::after,
.product-card:focus-within::after {
  background: rgba(0, 0, 0, 0.54);
}

.product-card figcaption {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  color: var(--color-white);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition), transform var(--transition);
  text-align: center;
}

.product-card:hover figcaption,
.product-card:focus-within figcaption {
  opacity: 1;
}

.product-card__category {
  font-size: clamp(16px, 1.042vw, 20px);
  line-height: 1.2;
  font-weight: 700;
}

.product-card__name {
  margin-top: 5px;
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1.18;
  font-weight: 700;
}

.partner-section {
  padding: 0 0 clamp(82px, 6.146vw, 118px);
  background: var(--color-white);
}

.partner-section .section-heading {
  margin-bottom: clamp(40px, 3.177vw, 61px);
}

.partner-section .section-heading h2 {
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: 1.2;
  font-weight: 700;
}

.partner-section .section-heading p {
  margin-top: 11px;
  color: #8B5E3C;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.2;
  font-weight: 300;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.partner-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: auto;
}

.partner-list img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.cta-banner {
  min-height: clamp(300px, 21.615vw, 415px);
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(22, 17, 13, 0.9) 0%, rgba(22, 17, 13, 0.72) 50%, rgba(22, 17, 13, 0.56) 100%),
    url("../assets/images/bg-main.png") center / cover no-repeat,
    #2b2019;
}

.cta-banner__inner {
  min-height: clamp(300px, 21.615vw, 415px);
  width: 100%;
  padding: clamp(64px, 5.208vw, 100px) clamp(40px, 7.396vw, 142px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 2.5vw, 48px);
}

.cta-banner__copy img {
  width: clamp(82px, 5.99vw, 115px);
  margin-bottom: clamp(24px, 1.823vw, 35px);
}

.cta-banner__copy h2 {
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1.45;
  font-weight: 700;
}

.location-section {
  padding: clamp(72px, 5.208vw, 100px) 0;
  background: var(--color-white);
}

.location-section__inner.container {
  width: min(calc(100% - 80px), 1640px);
  max-width: 1640px;
}

.location-section__inner {
  display: grid;
  grid-template-columns: minmax(520px, 1019px) minmax(360px, 548px);
  gap: 0;
  align-items: end;
  justify-content: center;
}

.location-section__map {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(330px, 33.021vw, 634px);
  border-radius: 17px;
  border: 1px solid #dedede;
  background: #f1f1f1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.location-section__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(18%) saturate(0.82) contrast(0.98);
}

.location-section__info {
  width: 100%;
  max-width: 548px;
}

.location-section__info h2 {
  padding-left: clamp(20px, 1.875vw, 36px);
  padding-bottom: clamp(12px, 0.833vw, 16px);
  border-bottom: 1px solid #707070;
  color: #1f2732;
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1.1;
  font-weight: 700;
}

.location-section__info dl {
  margin-top: clamp(20px, 1.302vw, 25px);
  padding-left: clamp(20px, 1.875vw, 36px);
}

.location-section__info div + div {
  margin-top: clamp(10px, 0.833vw, 16px);
}

.location-section__info dt {
  color: #3f3f3f;
  font-size: clamp(16px, 1.042vw, 20px);
  line-height: 1.4;
  font-weight: 400;
}

.location-section__info dd {
  margin-top: 5px;
  color: #1f2732;
  font-size: clamp(20px, 1.458vw, 28px);
  line-height: 1.35;
  font-weight: 400;
}

.location-section__info a {
  color: #8B5E3C;
  font-size: clamp(22px, 1.563vw, 30px);
  line-height: 1.15;
  font-weight: 700;
}

.location-section__hours {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 1.302vw, 25px);
  margin-top: 4px !important;
}

.location-section__hours dt {
  font-size: clamp(13px, 0.833vw, 16px);
}

.location-section__hours dd {
  margin-top: 0;
  font-size: clamp(13px, 0.833vw, 16px);
  line-height: 1.4;
  font-weight: 400;
}

.location-section__closed {
  margin-top: 0 !important;
}

.location-section__closed dt {
  color: #8B5E3C;
  font-size: clamp(13px, 0.833vw, 16px);
  font-weight: 400;
}

.location-section__closed dd {
  display: none;
}

.location-section__address {
  margin-top: clamp(28px, 2.083vw, 40px) !important;
}

.location-section__address dd {
  font-size: clamp(24px, 1.667vw, 32px);
  line-height: 1.45;
  font-weight: 400;
}

.inquiry-section {
  min-height: clamp(560px, 39.271vw, 754px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-secondary);
}

.inquiry-section__visual {
  width: 100%;
  min-height: clamp(560px, 39.271vw, 754px);
  background: url("../assets/images/inquiry-visual.png") center / cover no-repeat #8e684c;
}

.inquiry-section__form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(56px, 4.688vw, 90px) clamp(40px, 6.094vw, 117px);
}

.inquiry-form {
  width: min(100%, 650px);
}

.inquiry-form__guide {
  margin: 0 0 14px;
  color: #3a302a;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.45;
  font-weight: 800;
}

.inquiry-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input,
.form-field select {
  height: 54px;
  padding: 0 20px;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-primary) 50%),
    linear-gradient(135deg, var(--color-primary) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 22px,
    calc(100% - 18px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field textarea {
  min-height: 166px;
  resize: vertical;
  padding: 18px 20px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(154, 98, 55, 0.14);
  outline: 0;
}

.site-footer {
  min-height: 0;
  padding: 36px 0 44px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-dark);
}

.site-footer__inner img {
  width: 116px;
  margin-bottom: 18px;
}

.site-footer__copyright {
  font-size: 14px;
}

.site-footer__info {
  max-width: 980px;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer__info div {
  display: flex;
  gap: 10px;
}

.site-footer__info dt {
  flex: 0 0 96px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.site-footer__info dd {
  min-width: 0;
}

.site-footer__info a {
  color: inherit;
}

.site-footer__info span {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.38);
}

.site-footer__copyright {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1200px) {
  .feature-card {
    padding: 30px 28px 26px;
  }

}

@media (max-width: 960px) {
  .feature-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 414px));
  }

  .feature-card:nth-child(n + 3) {
    border-top: 1px solid var(--color-line);
  }

  .intro-section__inner,
  .location-section__inner {
    grid-template-columns: 1fr;
    gap: clamp(36px, 4.167vw, 64px);
    align-items: center;
  }

  .location-section__inner.container {
    width: min(calc(100% - 80px), var(--container-width));
    max-width: var(--container-width);
  }

  .location-section__info {
    max-width: 640px;
    justify-self: center;
    text-align: center;
  }

  .location-section__hours {
    justify-content: center;
  }

  .intro-section__inner.container {
    width: min(calc(100% - 80px), var(--container-width));
    max-width: var(--container-width);
  }

  .intro-section__text {
    text-align: center;
  }

  .intro-section__image {
    justify-self: center;
  }

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

  .cta-banner__inner {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .cta-banner__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .inquiry-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container-width));
  }

  .site-header {
    top: 18px;
  }

  .site-header__inner {
    min-height: var(--header-height);
    padding-bottom: 8px;
    flex-direction: row;
    justify-content: space-between;
  }

  .site-header__logo img {
    width: 124px;
  }

  .site-header__toggle {
    display: inline-block;
    width: 40px;
    height: 40px;
  }

  .site-header__nav {
    position: absolute;
    top: calc(var(--header-height) + 12px);
    left: 16px;
    right: 16px;
    display: none;
    margin-top: 0;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-small);
    background: rgba(38, 30, 24, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  }

  .site-header.is-open .site-header__nav {
    display: block;
  }

  .site-header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header__link {
    min-height: 48px;
    justify-content: center;
    font-size: 16px;
  }

  .hero {
    min-height: 620px;
    background-position: center top;
  }

  .hero__content {
    padding-top: 172px;
  }

  .hero h1 {
    max-width: 390px;
    margin: 0 auto;
    font-size: 27px;
    line-height: 1.34;
  }

  .hero__description {
    max-width: 360px;
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.65;
  }

  .button {
    min-height: 50px;
    padding: 0 24px;
    font-size: 15px;
  }

  .button--outline,
  .button--light {
    min-width: 0;
    width: min(100%, 340px);
  }

  .button--outline {
    height: 58px;
    margin-top: 38px;
    font-size: 16px;
  }

  .feature-strip__grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:first-child,
  .feature-card:nth-child(2n + 1) {
    min-height: auto;
    padding: 28px 24px;
    border-left: 0;
    border-right: 0;
  }

  .feature-card:not(:last-child)::after {
    display: none;
  }

  .feature-card + .feature-card {
    border-top: 1px solid var(--color-line);
  }

  .feature-card__label {
    font-size: 18px;
  }

  .feature-card__title {
    font-size: 23px;
  }

  .feature-card p {
    font-size: 15px;
  }

  .feature-card__more {
    right: 64px;
    top: 127px;
    bottom: auto;
    width: 28px;
    height: 15px;
  }

  .intro-section,
  .product-section,
  .location-section {
    padding: 66px 0;
  }

  .intro-section {
    min-height: auto;
    display: block;
  }

  .partner-section {
    padding: 0 0 66px;
  }

  .intro-section__inner {
    gap: 34px;
  }

  .intro-section__inner.container {
    width: min(calc(100% - 32px), var(--container-width));
  }

  .intro-section__text {
    text-align: center;
  }

  .intro-section__image {
    width: 100%;
    justify-self: center;
    height: auto;
    aspect-ratio: 1.25 / 1;
  }

  .intro-section h2,
  .section-heading h2 {
    font-size: 27px;
  }

  .intro-section__subtitle {
    margin-top: 10px;
    font-size: 18px;
  }

  .intro-section__body {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.75;
  }

  .intro-section__body p + p {
    margin-top: 14px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .product-grid {
    gap: 0;
  }

  .partner-list {
    gap: 22px 32px;
  }

  .cta-banner__inner {
    min-height: 320px;
    gap: 30px;
    align-items: center;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 56px;
    padding-bottom: 56px;
    text-align: center;
  }

  .cta-banner__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__copy img {
    width: 98px;
    margin-bottom: 22px;
  }

  .cta-banner__copy h2 {
    font-size: 24px;
  }

  .cta-banner .button--light {
    width: min(100%, 260px);
    height: 56px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 18px;
  }

  .cta-banner .button--light .button__icon {
    width: 18px;
    height: 10px;
    flex-basis: 18px;
  }

  .location-section__inner {
    gap: 32px;
  }

  .location-section__inner.container {
    width: min(calc(100% - 32px), var(--container-width));
  }

  .location-section__map {
    height: 270px;
  }

  .location-section__info h2 {
    font-size: 24px;
  }

  .location-section__info dd {
    font-size: 16px;
  }

  .location-section__info a {
    font-size: 22px;
  }

  .location-section__hours {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .inquiry-section__visual {
    min-height: 310px;
  }

  .inquiry-section__form-wrap {
    padding: 44px 16px 52px;
  }

  .inquiry-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    min-height: 250px;
    padding: 42px 0 60px;
  }

  .site-footer__info {
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 12px;
  }

  .site-footer__info div {
    gap: 8px;
  }

  .site-footer__info dt {
    flex-basis: auto;
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* About page */
.about-page {
  --about-cream: #fff7ed;
  --about-cream-deep: #f4e4d2;
  --about-brown: #6f4225;
  --about-brown-soft: #8b5e3c;
  --about-orange: #d18a45;
  --about-border: #ead8c7;
  background: var(--about-cream);
}

.about-page main {
  background: var(--about-cream);
}

.about-page .site-header__link[aria-current="page"] {
  color: var(--color-white);
  font-weight: 600;
}

.about-page .site-header {
  top: clamp(14px, 1.25vw, 24px);
}

.about-page .site-header__inner {
  min-height: 72px;
  padding-bottom: 0;
  flex-direction: row;
  justify-content: space-between;
}

.about-page .site-header__nav {
  margin-top: 0;
}

.about-page .site-header__menu {
  gap: clamp(28px, 2.5vw, 48px);
}

.about-page .site-header__link {
  min-height: 32px;
  font-size: clamp(15px, 0.938vw, 18px);
}

.about-hero {
  position: relative;
  aspect-ratio: 1920 / 900;
  height: auto;
  min-height: 0;
  padding: 0;
  color: var(--color-white);
  background: #4a3020;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 13, 8, 0.08) 0%, rgba(20, 13, 8, 0.34) 100%),
    linear-gradient(270deg, rgba(20, 13, 8, 0.5) 0%, rgba(20, 13, 8, 0.22) 42%, rgba(20, 13, 8, 0.04) 100%);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/images/hero-sub1.png") center center / contain no-repeat;
  transform: scaleX(-1);
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: clamp(24px, 5.729vw, 110px);
}

.about-hero__content {
  max-width: 980px;
  text-align: right;
}

.about-eyebrow,
.about-kicker {
  display: block;
  color: var(--about-brown-soft);
  font-size: clamp(15px, 0.885vw, 17px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-hero h1 {
  max-width: none;
  margin-left: auto;
  color: var(--color-white);
  font-size: clamp(32px, 2.604vw, 50px);
  font-weight: 800;
  line-height: 1.18;
  white-space: nowrap;
}

.about-hero__text {
  max-width: 520px;
  margin-top: 16px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 0.99vw, 19px);
  font-weight: 400;
  line-height: 1.55;
}

.about-hero__actions,
.about-closing__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero__actions {
  justify-content: flex-end;
}

.about-button {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.about-button:hover,
.about-button:focus-visible {
  transform: translateY(-2px);
}

.about-button--primary {
  color: var(--color-white);
  background: var(--about-brown-soft);
  box-shadow: 0 16px 36px rgba(111, 66, 37, 0.22);
}

.about-button--primary:hover,
.about-button--primary:focus-visible {
  background: var(--about-brown);
}

.about-button--light {
  color: var(--about-brown);
  border-color: rgba(139, 94, 60, 0.24);
  background: rgba(255, 255, 255, 0.82);
}

.about-button--light:hover,
.about-button--light:focus-visible {
  border-color: rgba(139, 94, 60, 0.46);
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(111, 66, 37, 0.12);
}

.about-story__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--color-secondary);
  box-shadow: 0 20px 54px rgba(80, 48, 28, 0.16);
}

.about-story__image {
  aspect-ratio: 1.22;
}

.about-story__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(70, 41, 24, 0.08);
  pointer-events: none;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section {
  padding: clamp(100px, 7.813vw, 150px) 0;
}

.about-story {
  background: var(--color-white);
}

.about-section--surface {
  background: #fff1e2;
}

.about-values {
  position: relative;
  padding: clamp(110px, 7.813vw, 150px) 0 clamp(96px, 7.292vw, 140px);
  color: var(--color-white);
  background: url("../assets/images/hero-main.png") center / cover no-repeat #2c2019;
  overflow: hidden;
}

.about-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 15, 10, 0.7) 0%, rgba(22, 15, 10, 0.5) 46%, rgba(22, 15, 10, 0.68) 100%),
    rgba(0, 0, 0, 0.18);
}

.about-values > .container {
  position: relative;
  z-index: 1;
}

.about-values .about-section-heading {
  max-width: 980px;
  margin-bottom: clamp(46px, 4.427vw, 85px);
}

.about-values .about-kicker {
  color: var(--color-white);
  font-size: clamp(20px, 1.563vw, 30px);
  font-weight: 800;
}

.about-values .about-kicker::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 22px auto 0;
  background: rgba(255, 255, 255, 0.82);
}

.about-values .about-section-heading h2 {
  margin-top: clamp(34px, 3.125vw, 60px);
  color: var(--color-white);
  font-size: clamp(36px, 3.229vw, 62px);
  font-weight: 400;
  line-height: 1.28;
}

.about-story__inner,
.about-philosophy__inner,
.about-signature__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(56px, 6.25vw, 120px);
  align-items: center;
}

.about-story__content h2,
.about-philosophy__copy h2,
.about-section-heading h2,
.about-closing h2 {
  color: #27211d;
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 800;
  line-height: 1.22;
}

.about-story__content h2,
.about-philosophy__copy h2,
.about-section-heading h2 {
  margin-top: 14px;
}

.about-story__content > p:not(.about-kicker),
.about-philosophy__copy > p,
.about-section-heading > p:not(.about-kicker) {
  margin-top: 26px;
  color: #56483f;
  font-size: clamp(18px, 1.146vw, 22px);
  font-weight: 400;
  line-height: 1.8;
}

.about-section-heading {
  max-width: 760px;
  margin: 0 auto clamp(46px, 4.167vw, 80px);
  text-align: center;
}

.about-section-heading--left {
  margin: 0;
  text-align: left;
}

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

.about-value-card,
.about-process-list li,
.about-signature-list li {
  border: 1px solid var(--about-border);
  border-radius: var(--radius-small);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 12px 30px rgba(111, 66, 37, 0.06);
}

.about-value-card {
  min-height: 260px;
  padding: 38px 34px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.about-value-card:hover {
  border-color: rgba(139, 94, 60, 0.38);
  box-shadow: 0 18px 40px rgba(111, 66, 37, 0.1);
  transform: translateY(-3px);
}

.about-values .about-value-grid {
  gap: clamp(20px, 2.083vw, 40px);
}

.about-values .about-value-card {
  position: relative;
  min-height: clamp(250px, 15.365vw, 295px);
  padding: clamp(44px, 3.125vw, 60px) 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  outline: 0;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.about-values .about-value-card:hover,
.about-values .about-value-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.24);
  transform: translateY(-12px);
}

.about-values .about-value-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
}

.about-values .about-card-number {
  min-width: 0;
  height: auto;
  padding: 0;
  color: #302926;
  background: transparent;
  font-size: clamp(15px, 0.938vw, 18px);
  font-weight: 500;
  line-height: 1.2;
}

.about-values .about-value-card h3 {
  margin-top: 8px;
  color: #722a31;
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 800;
  line-height: 1.16;
}

.about-values .about-value-card p {
  max-width: 300px;
  margin-top: 24px;
  color: #2e2925;
  font-size: clamp(16px, 1.042vw, 20px);
  line-height: 1.65;
}

.about-gallery {
  background: var(--color-white);
}

.about-gallery .about-section-heading p:not(.about-kicker) {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

.about-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.28;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-small);
  background: #f2eee9;
  box-shadow: 0 16px 42px rgba(40, 28, 20, 0.08);
}

.about-gallery__item::after {
  content: "크게 보기";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: rgba(38, 24, 16, 0.48);
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--transition);
}

.about-gallery__item:hover::after,
.about-gallery__item:focus-visible::after {
  opacity: 1;
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.about-gallery__item:hover img,
.about-gallery__item:focus-visible img {
  transform: scale(1.04);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 14, 10, 0.82);
}

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

.image-lightbox__image {
  width: min(100%, 1180px);
  max-height: calc(100vh - 96px);
  object-fit: contain;
  border-radius: var(--radius-small);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.image-lightbox__close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.image-lightbox__close::before,
.image-lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--color-white);
}

.image-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.image-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.products-page .about-hero::after {
  background-image: url("../assets/images/hero-sub2.png");
}

.contact-page .about-hero {
  aspect-ratio: auto;
  height: 700px;
  min-height: 700px;
}

.contact-page .about-hero::after {
  background-image: url("../assets/images/hero-sub3.png");
  background-size: cover;
}

.contact-form-section {
  min-height: 620px;
  grid-template-columns: 1fr;
  background: var(--color-white);
}

.contact-form-section__inner {
  padding: clamp(76px, 6.25vw, 120px) 0;
}

.contact-form-section .inquiry-form {
  width: min(100%, 760px);
  max-width: 760px;
  margin: clamp(56px, 4.167vw, 80px) auto 0;
}

.contact-form-section .form-field input,
.contact-form-section .form-field select,
.contact-form-section .form-field textarea {
  border-color: #ded8d2;
  background-color: #ffffff;
}

.contact-form-section .form-field input::placeholder,
.contact-form-section .form-field textarea::placeholder {
  color: #9a928c;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.083vw, 40px);
}

.contact-info-card {
  min-height: clamp(210px, 14.063vw, 270px);
  padding: 42px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e0dc;
  border-radius: var(--radius-small);
  background: var(--color-white);
  text-align: center;
}

.contact-info-card__icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  color: #8b1530;
}

.contact-info-card__icon--clock {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.contact-info-card__icon--clock::before,
.contact-info-card__icon--clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  background: currentColor;
  transform-origin: top center;
}

.contact-info-card__icon--clock::before {
  height: 15px;
  transform: translate(-50%, -1px);
}

.contact-info-card__icon--clock::after {
  height: 12px;
  transform: translate(-50%, -1px) rotate(125deg);
}

.contact-info-card__icon--phone::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 3px;
  width: 22px;
  height: 38px;
  border: 3px solid currentColor;
  border-radius: 12px;
}

.contact-info-card__icon--phone::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 34px;
  height: 20px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 0 0 18px 18px;
}

.contact-info-card__icon--mobile::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 1px;
  width: 28px;
  height: 52px;
  border: 3px solid currentColor;
  border-radius: 10px;
}

.contact-info-card__icon--mobile::after {
  content: "";
  position: absolute;
  left: 27px;
  bottom: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.contact-info-card h2 {
  color: #34302d;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.contact-info-card p {
  margin-top: 8px;
  color: #77716d;
  font-size: 18px;
  line-height: 1.5;
}

.contact-info-card a {
  color: inherit;
}

.contact-info-message {
  margin-top: clamp(44px, 4.167vw, 80px);
  color: #2f2a27;
  font-size: clamp(20px, 1.563vw, 30px);
  line-height: 1.55;
  text-align: center;
}

.product-catalog {
  padding: clamp(90px, 7.813vw, 150px) 0 clamp(110px, 8.333vw, 160px);
  background: var(--color-white);
}

.product-category + .product-category {
  margin-top: clamp(96px, 7.292vw, 140px);
}

.product-category {
  scroll-margin-top: 32px;
}

.product-category__title {
  padding-bottom: 18px;
  border-bottom: 1px solid #2e2925;
  color: #79202a;
  font-size: clamp(24px, 1.875vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.product-category__grid {
  margin-top: clamp(56px, 4.688vw, 90px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4.167vw, 80px);
  align-items: end;
}

.product-item figure {
  display: grid;
  gap: 24px;
}

.product-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f1ed;
  transition: transform 220ms ease;
}

.product-item:hover img {
  transform: translateY(-6px);
}

.product-item figcaption {
  color: #1f1b18;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.about-card-number,
.about-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--about-brown-soft);
  background: #f8e6d2;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.about-value-card h3 {
  margin-top: 28px;
  color: #2b211c;
  font-size: clamp(24px, 1.667vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

.about-value-card p {
  margin-top: 18px;
  color: #66564c;
  font-size: clamp(16px, 1.042vw, 20px);
  line-height: 1.75;
}

.about-philosophy__inner {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.about-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-process-list li {
  min-height: 170px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-process-list strong {
  margin-top: 28px;
  color: #2e241e;
  font-size: clamp(22px, 1.563vw, 30px);
  font-weight: 800;
  line-height: 1.3;
}

.about-process-list p {
  margin-top: 14px;
  color: #66564c;
  font-size: clamp(15px, 0.99vw, 19px);
  line-height: 1.6;
}

.about-signature__inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
}

.about-signature-list {
  display: grid;
  gap: 16px;
}

.about-signature-list li {
  min-height: 92px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  color: #2d231d;
  font-size: clamp(19px, 1.25vw, 24px);
  font-weight: 800;
}

.about-signature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 16px;
  border-radius: 50%;
  background: var(--about-orange);
  flex: 0 0 auto;
}

.about-closing {
  position: relative;
  padding: clamp(96px, 7.292vw, 140px) 0;
  color: var(--color-white);
  background: url("../assets/images/hero-main.png") center / cover no-repeat #3f2b20;
}

.about-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 25, 15, 0.66);
}

.about-closing__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.about-closing h2 {
  color: var(--color-white);
}

.about-closing p {
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.354vw, 26px);
  line-height: 1.6;
}

.about-closing__actions {
  justify-content: center;
}

.about-closing .about-button--light {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.13);
}

.about-closing .about-button--light:hover,
.about-closing .about-button--light:focus-visible {
  color: var(--about-brown);
  background: var(--color-white);
}

@media (max-width: 960px) {
  .about-hero__inner {
    padding-bottom: 72px;
  }

  .about-story__inner,
  .about-philosophy__inner,
  .about-signature__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-story__content,
  .about-philosophy__copy,
  .about-section-heading--left,
  .about-closing__inner {
    text-align: center;
  }

  .about-hero h1,
  .about-hero__text,
  .about-story__content > p:not(.about-kicker),
  .about-philosophy__copy > p,
  .about-section-heading > p:not(.about-kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .about-closing__actions {
    justify-content: center;
  }

  .about-story__image {
    width: min(100%, 680px);
    margin: 0 auto;
  }

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

  .about-values {
    padding: 92px 0;
  }

  .about-values .about-value-grid {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .about-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-value-card {
    min-height: 0;
  }

  .about-signature-list {
    width: min(100%, 640px);
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .about-hero {
    aspect-ratio: auto;
    height: 560px;
    min-height: 560px;
  }

  .about-hero::before {
    background:
      linear-gradient(180deg, rgba(20, 13, 8, 0.04) 0%, rgba(20, 13, 8, 0.54) 100%),
      rgba(20, 13, 8, 0.08);
  }

  .about-hero::after {
    background-size: auto 100%;
    background-position: center center;
  }

  .about-hero__inner {
    padding-bottom: 14px;
  }

  .about-hero__content {
    max-width: 100%;
  }

  .about-eyebrow,
  .about-kicker {
    font-size: 14px;
  }

  .about-hero h1 {
    font-size: clamp(20px, 5.6vw, 24px);
    line-height: 1.24;
    white-space: normal;
  }

  .about-hero__text {
    max-width: 280px;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  .about-hero__actions,
  .about-closing__actions {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .about-closing__actions {
    align-items: center;
  }

  .about-button {
    width: min(100%, 180px);
    min-height: 36px;
    padding: 0 16px;
    font-size: 12px;
  }

  .about-section {
    padding: 72px 0;
  }

  .about-story__content h2,
  .about-philosophy__copy h2,
  .about-section-heading h2,
  .about-closing h2 {
    font-size: 29px;
    line-height: 1.28;
  }

  .about-story__content > p:not(.about-kicker),
  .about-philosophy__copy > p,
  .about-section-heading > p:not(.about-kicker) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.75;
  }

  .about-section-heading {
    margin-bottom: 34px;
  }

  .about-value-card {
    padding: 30px 24px;
  }

  .about-values {
    padding: 76px 0;
    background-position: center;
  }

  .about-values .about-section-heading {
    margin-bottom: 34px;
  }

  .about-values .about-kicker {
    font-size: 20px;
  }

  .about-values .about-kicker::after {
    width: 30px;
    margin-top: 14px;
  }

  .about-values .about-section-heading h2 {
    margin-top: 28px;
    font-size: 28px;
  }

  .about-values .about-value-card {
    min-height: 210px;
    padding: 34px 24px;
  }

  .about-value-card h3 {
    margin-top: 22px;
    font-size: 23px;
  }

  .about-values .about-value-card h3 {
    margin-top: 6px;
    font-size: 31px;
  }

  .about-value-card p {
    font-size: 15px;
  }

  .about-values .about-value-card p {
    margin-top: 18px;
    font-size: 15px;
  }

  .about-gallery__grid {
    gap: 12px;
  }

  .about-gallery__item::after {
    font-size: 14px;
  }

  .image-lightbox {
    padding: 18px;
  }

  .image-lightbox__image {
    max-height: calc(100vh - 72px);
  }

  .image-lightbox__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .product-catalog {
    padding: 68px 0 86px;
  }

  .product-category + .product-category {
    margin-top: 72px;
  }

  .product-category__title {
    padding-bottom: 12px;
    font-size: 22px;
  }

  .product-category__grid {
    margin-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
  }

  .product-item figure {
    gap: 14px;
  }

  .product-item img {
    aspect-ratio: 1 / 1;
  }

  .product-item figcaption {
    font-size: 15px;
  }

  .contact-page .about-hero {
    height: 520px;
    min-height: 520px;
  }

  .contact-form-section {
    min-height: 0;
  }

  .contact-form-section__inner {
    padding: 58px 0 72px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-info-card {
    min-height: 180px;
    padding: 32px 20px;
  }

  .contact-info-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .contact-info-card__icon--phone::before {
    left: 14px;
    width: 20px;
    height: 32px;
  }

  .contact-info-card__icon--phone::after {
    left: 9px;
    width: 30px;
    height: 18px;
  }

  .contact-info-card__icon--mobile::before {
    left: 12px;
    width: 24px;
    height: 43px;
  }

  .contact-info-card__icon--mobile::after {
    left: 21px;
    bottom: 8px;
  }

  .contact-info-card h2 {
    font-size: 18px;
  }

  .contact-info-card p {
    font-size: 15px;
  }

  .contact-info-message {
    margin-top: 34px;
    font-size: 17px;
  }

  .contact-form-section .inquiry-form {
    margin-top: 42px;
  }

  .about-process-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-process-list li {
    min-height: 128px;
    padding: 24px;
  }

  .about-process-list strong {
    margin-top: 22px;
    font-size: 21px;
  }

  .about-process-list p {
    font-size: 15px;
  }

  .about-signature-list li {
    min-height: 74px;
    padding: 0 22px;
    font-size: 18px;
  }

  .about-closing {
    padding: 78px 0;
  }

  .about-closing p {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .about-hero h1 {
    font-size: 31px;
  }

  .about-story__image {
    border-radius: var(--radius-small);
  }
}
