* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F5F1E8;
    --sand: #E8DED2;
    --terracotta: #D4A88C;
    --clay: #B8927D;
    --earth: #8B7355;
    --sage: #A8B5A0;
    --mist: #C9C5BA;
    --charcoal: #3A3632;
    --warm-white: #FDFBF7;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 146, 125, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--earth);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--earth);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clay);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clay);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--clay);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--clay);
}

/* Image Placeholders */
.image-placeholder,
.story-image-placeholder,
.collection-placeholder,
.service-placeholder {
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before,
.story-image-placeholder::before,
.collection-placeholder::before,
.service-placeholder::before {
    content: 'Add Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mist);
    font-weight: 500;
}

.story-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 2px;
}

/* Hero Section - Redesigned */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    overflow: hidden;
    width: 100%;
}

.hero-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

/* Large Background Text */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(15rem, 25vw, 30rem);
    font-weight: 600;
    color: rgba(184, 146, 125, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.hero-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--clay);
}

.eyebrow-text {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.hero-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: titleSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .title-line:nth-child(2) { animation-delay: 0.2s; }
.hero-title .title-line:nth-child(3) { animation-delay: 0.3s; }

.hero-title .highlight {
    color: var(--clay);
    font-style: italic;
}

@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--earth);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background: var(--clay);
    color: var(--warm-white);
}

.hero-btn.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--earth);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.hero-btn.primary:hover::before {
    transform: translateX(0);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--clay);
    border: 2px solid var(--clay);
}

.hero-btn.secondary:hover {
    background: var(--clay);
    color: var(--warm-white);
    transform: translateY(-3px);
}

/* Hero Images */
.hero-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.hero-image-main {
    position: relative;
}

.hero-image-main .image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 54, 50, 0.15);
}

.hero-image-main .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-secondary {
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    width: 60%;
}

.hero-image-secondary .image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 54, 50, 0.2);
    border: 4px solid var(--warm-white);
}

.hero-image-secondary .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
}

.label-number {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--clay);
}

.label-text {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--charcoal);
}

/* Hero Info Bar */
.hero-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(184, 146, 125, 0.2);
    border-bottom: 1px solid rgba(184, 146, 125, 0.2);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.info-value {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--clay);
    font-weight: 500;
}

.info-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--earth);
}

.info-divider {
    width: 1px;
    height: 40px;
    background: rgba(184, 146, 125, 0.2);
}

/* Story Section */
.story {
    padding: 10rem 4rem;
    background: var(--cream);
    overflow: hidden;
    width: 100%;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.story-image-large {
    position: sticky;
    top: 8rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 2px;
}

.image-caption {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--earth);
}

.caption-line {
    display: block;
}

.story-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-number {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--mist);
}

.story-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--charcoal);
}

.story-text {
    margin-bottom: 4rem;
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--earth);
    margin-bottom: 1.5rem;
}

.story-divider {
    width: 60px;
    height: 1px;
    background: var(--clay);
    margin: 3rem 0;
}

.story-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.principle {
    padding: 2rem 0;
    border-top: 1px solid var(--clay);
}

.principle-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.principle-desc {
    font-size: 0.9rem;
    color: var(--earth);
    line-height: 1.6;
}

/* Collections - Horizontal Scroll */
.collections {
    padding: 10rem 0 10rem 4rem;
    background: var(--warm-white);
    overflow: hidden;
    width: 100%;
}

.collections-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-right: 4rem;
}

.collections-number {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--mist);
}

.collections-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--charcoal);
}

.collections-subtitle {
    font-size: 1rem;
    color: var(--earth);
    margin-left: auto;
}

.collections-scroll {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2rem;
    padding-right: 4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.collections-scroll::-webkit-scrollbar {
    display: none;
}

.collection-item {
    flex: 0 0 400px;
    scroll-snap-align: start;
    cursor: pointer;
}

/* Collection Images */
.collection-image {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 54, 50, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--warm-white);
}

.collection-info {
    padding: 2rem 0;
}

.collection-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.collection-info p {
    font-size: 0.95rem;
    color: var(--earth);
    margin-bottom: 1rem;
}

.collection-line {
    width: 0;
    height: 1px;
    background: var(--clay);
    transition: width 0.6s ease;
}

.collection-item:hover .collection-line {
    width: 60px;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-right: 4rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mist);
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Craft Section - Split Screen */
.craft {
    background: var(--sand);
    overflow: hidden;
    width: 100%;
}

.craft-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 100vh;
}

.craft-left {
    padding: 10rem 4rem;
    background: var(--cream);
}

.craft-sticky {
    position: sticky;
    top: 10rem;
}

.craft-number {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--mist);
    display: block;
    margin-bottom: 2rem;
}

.craft-sticky h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.craft-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--earth);
    margin-bottom: 3rem;
}

.craft-cta {
    margin-top: 4rem;
}

.link-underline {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--clay);
    text-decoration: none;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--clay);
    transition: all 0.3s ease;
}

.link-underline:hover {
    padding-bottom: 1rem;
    border-bottom-color: var(--earth);
}

.craft-right {
    padding: 10rem 4rem;
}

.craft-services {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.service-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 2px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-block:hover .service-image img {
    transform: scale(1.05);
}

.service-placeholder {
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
}

.service-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-list li {
    padding-left: 2rem;
    position: relative;
    color: var(--earth);
    line-height: 1.6;
}

.service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--clay);
}

/* Why DSK - Marquee */
.why-dsk {
    padding: 8rem 0;
    background: var(--warm-white);
    overflow: hidden;
    width: 100%;
}

.marquee {
    overflow: hidden;
    margin-bottom: 6rem;
    border-top: 1px solid var(--clay);
    border-bottom: 1px solid var(--clay);
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--clay);
}

.marquee-dot {
    color: var(--mist);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    padding: 0 4rem;
}

.why-item {
    display: flex;
    flex-direction: column;
}

.why-line {
    width: 40px;
    height: 2px;
    background: var(--clay);
    margin-bottom: 2rem;
}

.why-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--earth);
}

/* Contact Section */
.contact {
    padding: 10rem 4rem;
    background: var(--cream);
    overflow: hidden;
    width: 100%;
}

.contact-container {
    max-width: 1400px;
}

.contact-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 6rem;
}

.contact-number {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--mist);
}

.contact-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--charcoal);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
}

.info-value {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.link-hover {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Minimal Form */
.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--mist);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--clay);
}

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

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clay);
    transition: width 0.4s ease;
}

.form-field input:focus ~ .field-line,
.form-field select:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
    width: 100%;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: var(--clay);
    color: var(--warm-white);
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--earth);
    padding-right: 4rem;
}

.btn-arrow {
    margin-left: 2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(10px);
}

/* Footer */
.footer {
    padding: 6rem 4rem 3rem;
    background: var(--charcoal);
    color: var(--sand);
    overflow: hidden;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--mist);
}

.footer-details {
    padding-top: 3rem;
    border-top: 1px solid rgba(232, 222, 210, 0.2);
}

.footer-details p {
    font-size: 0.9rem;
    color: var(--mist);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    border-top: 1px solid rgba(232, 222, 210, 0.2);
    font-size: 0.85rem;
    color: var(--mist);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1.25rem 3rem;
    }
    
    .hero-wrapper {
        padding: 4rem 3rem;
    }
    
    .hero-main {
        gap: 4rem;
    }
    
    .story,
    .collections,
    .contact,
    .craft-left,
    .craft-right,
    .why-grid,
    .footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .collections-header {
        flex-wrap: wrap;
    }
    
    .collections-subtitle {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 968px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1.5rem;
    }
    
    .hero-image-secondary .image-wrapper {
        border: 3px solid var(--warm-white);
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .story-container {
        width: 100%;
        max-width: 100%;
    }
    
    .story-image-large {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .craft-split {
        grid-template-columns: 1fr;
    }
    
    .craft-sticky {
        position: relative;
        top: 0;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 4rem;
    }
    
    .hero-wrapper {
        padding: 2rem;
        max-width: 100%;
    }
    
    .hero-bg-text {
        font-size: 8rem;
        opacity: 0.4;
        left: 50%;
        right: auto;
    }
    
    .hero-main {
        gap: 3rem;
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-eyebrow {
        margin-bottom: 2rem;
    }
    
    .eyebrow-line {
        width: 30px;
    }
    
    .eyebrow-text {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        justify-content: center;
        text-align: center;
        padding: 1.1rem 2rem;
        width: 100%;
    }
    
    .hero-images {
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-image-main .image-wrapper {
        aspect-ratio: 4/5;
    }
    
    .hero-image-secondary {
        display: none;
    }
    
    .hero-info-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 1.5rem 0;
    }
    
    .info-item {
        flex: 1 1 45%;
        min-width: 140px;
    }
    
    .info-value {
        font-size: 1.5rem;
    }
    
    .info-label {
        font-size: 0.7rem;
    }
    
    .info-divider {
        display: none;
    }
    
    .story,
    .collections,
    .contact,
    .craft-left,
    .craft-right,
    .footer {
        padding: 5rem 2rem;
        max-width: 100%;
    }
    
    .why-dsk {
        padding: 5rem 0;
        max-width: 100%;
    }
    
    .why-grid {
        padding: 0 2rem;
        max-width: 100%;
    }
    
    .story-header,
    .collections-header,
    .contact-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .story-number,
    .collections-number,
    .contact-number {
        font-size: 0.9rem;
    }
    
    .story-header h2,
    .collections-header h2,
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .large-text {
        font-size: 1.1rem;
    }
    
    .story-text {
        margin-bottom: 3rem;
    }
    
    .story-principles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .principle {
        padding: 1.5rem 0;
    }
    
    .collections {
        padding: 5rem 0 5rem 2rem;
        max-width: 100vw;
    }
    
    .collections-header {
        padding-right: 2rem;
        max-width: 100%;
    }
    
    .collections-scroll {
        padding-right: 2rem;
        gap: 2rem;
        max-width: 100%;
    }
    
    .collection-item {
        flex: 0 0 280px;
    }
    
    .collection-info h3 {
        font-size: 1.5rem;
    }
    
    .scroll-hint {
        padding-right: 2rem;
        margin-top: 2rem;
    }
    
    .craft-left,
    .craft-right {
        padding: 4rem 2rem;
    }
    
    .craft-number {
        margin-bottom: 1.5rem;
    }
    
    .craft-sticky h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .craft-lead {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .craft-cta {
        margin-top: 2rem;
    }
    
    .craft-services {
        gap: 4rem;
    }
    
    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-list {
        gap: 0.75rem;
    }
    
    .marquee {
        margin-bottom: 4rem;
        padding: 1.5rem 0;
    }
    
    .marquee-content span {
        font-size: 1.3rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-item h3 {
        font-size: 1.3rem;
    }
    
    .contact-layout {
        gap: 4rem;
    }
    
    .contact-info-block {
        gap: 2.5rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    .minimal-form {
        gap: 2rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
    }
    
    .submit-btn:hover {
        padding-right: 2rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .hero-bg-text {
        font-size: 5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .info-item {
        flex: 1 1 100%;
    }
    
    .info-value {
        font-size: 1.3rem;
    }
    
    .story,
    .collections,
    .contact,
    .craft-left,
    .craft-right,
    .footer {
        padding: 4rem 1.5rem;
        max-width: 100%;
    }
    
    .why-dsk {
        padding: 4rem 0;
        max-width: 100%;
    }
    
    .why-grid {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .story-header h2,
    .collections-header h2,
    .contact-header h2,
    .craft-sticky h2 {
        font-size: 2rem;
    }
    
    .collections {
        padding: 4rem 0 4rem 1.5rem;
        max-width: 100vw;
    }
    
    .collections-header,
    .scroll-hint {
        padding-right: 1.5rem;
        max-width: calc(100vw - 1.5rem);
    }
    
    .collections-scroll {
        padding-right: 1.5rem;
        max-width: 100%;
    }
    
    .collection-item {
        flex: 0 0 250px;
    }
    
    .collection-info h3 {
        font-size: 1.3rem;
    }
    
    .marquee-content span {
        font-size: 1.1rem;
    }
    
    .mobile-link {
        font-size: 1.5rem;
    }
}
