:root {
    --bg: #f3eee6;
    --bg-soft: #faf7f2;
    --panel: rgba(255, 252, 247, 0.78);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --text: #221d18;
    --muted: #645a51;
    --line: rgba(34, 29, 24, 0.1);
    --accent: #8d6540;
    --accent-deep: #6f4d30;
    --stone: #2f3438;
    --stone-soft: #3b4145;
    --shadow-soft: 0 20px 60px rgba(47, 39, 29, 0.08);
    --shadow-strong: 0 28px 90px rgba(31, 25, 19, 0.14);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 22px;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    color: var(--text);
    font-family: "Avenir Next", "Segoe UI", sans-serif;
    background: radial-gradient(circle at left top, rgba(255, 255, 255, 0.8), transparent 28%), radial-gradient(circle at right top, rgba(219, 205, 186, 0.4), transparent 24%), linear-gradient(rgb(248, 243, 235) 0%, rgb(242, 236, 227) 38%, rgb(239, 233, 223) 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0px;
    line-height: 1.72;
    font-size: 18px;
}

h1, h2, h3 {
    margin-top: 0px;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.02;
}

h1 {
    font-size: clamp(46px, 5vw, 84px);
    margin-bottom: 24px;
    max-width: 19ch;
}

h2 {
    font-size: clamp(34px, 4vw, 58px);
    margin-bottom: 18px;
    max-width: 19ch;
}

h3 {
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 14px;
}

ul {
    margin: 0px;
    padding-left: 18px;
}

li {
    line-height: 1.6;
}

img {
    max-width: 100%;
}

.container {
    width: min(1200px, 100% - 48px);
    margin: 0px auto;
}

.narrow {
    width: min(860px, 100% - 48px);
}

.site-header {
    position: sticky;
    top: 0px;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(22px);
    background: rgba(244, 238, 229, 0.74);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}

.brand {
    font-family: "Iowan Old Style", "Palatino Linotype", serif;
    font-size: 32px;
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
}

.main-nav a {
    color: var(--muted);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.main-nav__divider {
    color: rgba(100, 90, 81, 0.55);
    font-size: 14px;
    letter-spacing: 0.06em;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.lang-switch a {
    position: relative;
    padding-bottom: 4px;
}

.lang-switch a::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 1px;
    background: currentcolor;
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: center center 0px;
    transition: opacity 0.2s, transform 0.2s;
}

.lang-switch a.is-active {
    color: var(--text);
}

.lang-switch a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.hero {
    padding: 42px 0px 40px;
}

.hero-shell {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 44px;
    background: linear-gradient(rgba(255, 252, 247, 0.76) 0%, rgba(252, 249, 244, 0.6) 100%);
    box-shadow: var(--shadow-soft);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0px, 1.05fr) minmax(0px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.eyebrow, .section-label, .fact-kicker, .badge-label, .card-index {
    display: inline-block;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
}

.eyebrow, .section-label, .badge-label, .fact-kicker, .card-index {
    color: rgb(247, 160, 79);
}

.hero-text, .lead {
    font-size: 21px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0px 0px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0px 24px;
    border-radius: 999px;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: rgb(255, 253, 249);
    background: linear-gradient(135deg, rgb(143, 103, 66), rgb(113, 77, 49));
    box-shadow: rgba(111, 77, 49, 0.22) 0px 18px 35px;
    border: medium;
}

.button-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.45);
}

.hero-visual {
    position: relative;
}

.hero-image {
    display: block;
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
}

.hero-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 6px;
    min-width: 220px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 22px;
    background: rgba(28, 24, 20, 0.72);
    color: rgb(247, 241, 232);
    backdrop-filter: blur(18px);
}

.hero-facts, .cards-three, .pricing-grid, .faq-list, .gallery-grid, .footer-grid, .usage-list, .usage-photo-strip, .check-grid {
    display: grid;
    gap: 24px;
}

.hero-facts {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
}

.fact-card, .info-card, .set-card, .faq-item, .usage-item, .check-item, .editorial-note {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-lg);
    background: var(--panel);
    box-shadow: var(--shadow-soft);
}

.fact-card, .info-card, .set-card, .faq-item, .usage-item, .check-item {
    padding: 28px;
}

.section {
    padding: 100px 0px;
}

.section-light {
    background: rgba(255, 255, 255, 0.26);
}

.section-framed {
    position: relative;
}

.section-framed::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(141, 101, 64, 0.1);
    border-radius: 36px;
    pointer-events: none;
}

.editorial-grid, .split, .materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.editorial-note {
    align-self: end;
    padding: 30px;
}

.gallery-grid {
    grid-template-columns: 1.28fr 0.86fr 0.86fr;
    margin-top: 40px;
}

.gallery-card, .material-photo, .practical-photo {
    margin: 0px;
}

.gallery-card img, .set-image, .material-photo img, .practical-photo img {
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.gallery-card-large img {
    height: 100%;
    min-height: 560px;
}

.gallery-card:not(.gallery-card-large) img {
    min-height: 268px;
}

.premium-cards, .premium-pricing {
    margin-top: 38px;
}

.cards-three, .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.card-index {
    margin-bottom: 18px;
}

.split-elevated, .split-highlight {
    align-items: center;
}

.section-dark {
    color: rgb(245, 237, 228);
    background: radial-gradient(circle at right top, rgba(164, 133, 99, 0.16), transparent 22%), linear-gradient(160deg, rgb(37, 41, 44) 0%, rgb(53, 58, 63) 100%);
}

.section-dark .section-label, .section-stone .section-label {
    color: rgb(215, 177, 132);
}

.usage-shell {
    display: grid;
    gap: 34px;
}

.usage-list {
    grid-template-columns: repeat(3, 1fr);
}

.usage-photo-strip {
    grid-template-columns: 1.1fr 0.9fr;
    margin-top: 28px;
}

.usage-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.usage-item p {
    color: rgba(245, 237, 228, 0.8);
}

.set-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.usage-photo, .secondary-photo {
    margin: 0px;
}

.usage-photo img, .secondary-photo img {
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.usage-photo img {
    min-height: 320px;
}

.set-image {
    aspect-ratio: 13 / 10;
    background: linear-gradient(rgb(244, 238, 231) 0%, rgb(235, 227, 216) 100%);
}

.set-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.set-size, .set-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0px 12px;
    border-radius: 999px;
    font-size: 13px;
}

.set-size {
    background: rgb(239, 230, 218);
    color: var(--accent-deep);
}

.set-tag {
    border: 1px solid var(--line);
    color: var(--muted);
}

.set-tag-accent {
    border-color: rgba(141, 101, 64, 0.22);
    background: rgba(141, 101, 64, 0.08);
    color: var(--accent-deep);
}

.set-card-featured {
    transform: translateY(-8px);
    background: linear-gradient(rgba(255, 250, 245, 0.98) 0%, rgba(247, 241, 233, 0.95) 100%);
    border-color: rgba(141, 101, 64, 0.18);
}

.set-price-block {
    display: grid;
    gap: 6px;
    padding: 20px 22px;
    text-align: center;
    justify-items: center;
}

.set-price {
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.045em;
    color: var(--ink);
}

.set-unit-price {
    font-size: 15px;
    color: var(--accent-deep);
}

.set-savings {
    font-size: 13px;
    color: var(--muted);
    max-width: 24ch;
}

.set-savings-strong {
    color: var(--accent-deep);
}

.set-card-featured .set-price-block {
}

.section-stone {
    color: rgb(245, 237, 228);
    background: linear-gradient(rgba(31, 34, 37, 0.96) 0%, rgba(44, 48, 52, 0.98) 100%);
}

.premium-materials .material-photo {
    margin-top: 30px;
}

.check-item {
    color: rgb(245, 237, 228);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.note {
    margin-top: 18px;
    color: rgb(114, 103, 95);
}

.practical-photo-wrap {
    margin-top: 38px;
}

.practical-photo img {
    max-height: 620px;
}

.secondary-photo-wrap {
    margin-top: 24px;
}

.secondary-photo img {
    max-height: 420px;
}

.faq-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
}

.policy a, .site-footer a {
    text-decoration: underline;
}

.policy-section {
    min-height: 70vh;
}

.site-footer {
    color: rgb(245, 237, 228);
    background: rgb(29, 31, 34);
}

.site-footer h2, .site-footer h3 {
    max-width: none;
}

.footer-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 26px;
    padding: 54px 0px 30px;
}

.footer-bottom {
    padding: 0px 0px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1120px) {
   
  .hero-grid, .hero-facts, .cards-three, .pricing-grid, .gallery-grid, .editorial-grid, .split, .materials-grid, .usage-list, .usage-photo-strip, .faq-list, .footer-grid {
    grid-template-columns: 1fr;
}


  .hero-image, .gallery-card-large img {
    min-height: 420px;
}


  .set-card-featured {
    transform: none;
}


}@media (max-width: 760px) {
   
  .container, .narrow {
    width: min(100% - 32px, 1200px);
}


  .header-inner {
    padding: 14px 0px;
    align-items: flex-start;
    flex-direction: column;
}


  .main-nav {
    justify-content: flex-start;
    gap: 14px;
}


  .main-nav__divider {
    display: none;
}


  .lang-switch {
    gap: 10px;
}


  .hero-shell {
    padding: 20px;
    border-radius: 30px;
}


  .hero {
    padding-top: 28px;
}


  .section {
    padding: 72px 0px;
}


  .hero-image, .gallery-card-large img, .gallery-card:not(.gallery-card-large) img {
    min-height: 280px;
}


  p, .lead, .hero-text {
    font-size: 17px;
}


  .fact-card, .info-card, .set-card, .faq-item, .usage-item, .check-item, .editorial-note {
    padding: 22px;
}


  .hero-badge {
    position: static;
    margin-top: 16px;
}


}@media (max-width: 640px) {
   
  #order-modal {
    padding: 16px;
}


  .order-modal__dialog {
    padding: 28px 20px 22px;
    border-radius: 24px;
}


}#order-modal {
    position: fixed;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms, visibility 180ms;
    z-index: 9999;
}

#order-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#order-modal .order-modal__backdrop {
    position: fixed;
    inset: 0px;
    background: rgba(16, 18, 20, 0.58);
}

#order-modal .order-modal__dialog {
    position: relative;
    width: min(100%, 520px);
    margin: 0px auto;
    padding: 34px 30px 30px;
    border-radius: 28px;
    background: linear-gradient(rgba(252, 247, 241, 0.98) 0%, rgba(243, 235, 226, 0.98) 100%);
    box-shadow: rgba(18, 20, 22, 0.24) 0px 34px 70px;
    z-index: 2;
}

@media (max-width: 640px) {
   
  #order-modal {
    padding: 16px;
}


  #order-modal .order-modal__dialog {
    padding: 28px 20px 22px;
    border-radius: 24px;
}


}#order-modal .order-modal__dialog {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#order-modal .order-modal__topbar {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 6px;
}

#order-modal .order-modal__close {
    position: static;
    margin-left: auto;
    font-size: 190%;
    border: medium;
    background: none;
    margin-top: -20px;
}

#order-modal .order-modal__label, #order-modal .order-modal__dialog h3, #order-modal .order-modal__set, #order-modal .order-form, #order-modal .order-form__error {
    width: 90%;
    text-align: center;
}

#order-modal .order-form {
    justify-items: center;
}

#order-modal .order-form__input, #order-modal .order-form__submit {
    width: 100%;
}

#order-modal .order-success {
    display: grid;
    gap: 18px;
    width: 100%;
    justify-items: center;
}

#order-modal .order-success__message {
    margin: 0px;
    max-width: 28ch;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

#order-modal .order-success__button {
    width: 100%;
}

#success-modal {
    position: fixed;
    inset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms, visibility 180ms;
    z-index: 10000;
}

#success-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#success-modal .success-modal__backdrop {
    position: fixed;
    inset: 0px;
    background: rgba(16, 18, 20, 0.58);
}

#success-modal .success-modal__dialog {
    position: relative;
    width: min(100%, 520px);
    margin: 0px auto;
    padding: 34px 30px 30px;
    border-radius: 28px;
    background: linear-gradient(rgba(252, 247, 241, 0.98) 0%, rgba(243, 235, 226, 0.98) 100%);
    box-shadow: rgba(18, 20, 22, 0.24) 0px 34px 70px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#success-modal .success-modal__topbar {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 6px;
}

#success-modal .success-modal__close {
    position: static;
    margin-left: auto;
    width: 40px;
    height: 40px;
    border: 0px;
    border-radius: 50%;
    background: rgba(37, 41, 44, 0.08);
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

#success-modal .success-modal__label {
    margin: 0px 0px 10px;
    color: var(--accent-deep);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

#success-modal .success-modal__dialog h3 {
    margin: 0px 0px 18px;
    max-width: 28ch;
    text-align: center;
}

#success-modal .success-modal__button {
    width: 100%;
}

@media (max-width: 640px) {
   
  #success-modal {
    padding: 16px;
}


  #success-modal .success-modal__dialog {
    padding: 28px 20px 22px;
    border-radius: 24px;
}


}