/*
 * Good Shepherd Website Styles
 * Mobile-First Editorial Design
 * Warm neutrals, generous spacing, timeless aesthetic
 * 
 * Structure:
 * - Base styles = mobile (default)
 * - @media (min-width: 768px) = tablet
 * - @media (min-width: 1024px) = desktop
 */

/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

html {
    font-size: 100%; /* 16px base, allows user preference */
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1F1F1D;
    background-color: #F6F4EF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   Typography (Mobile-First)
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Mobile typography - using clamp() for fluid scaling */
h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
}

h4 {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: clamp(1rem, 2vw, 1.0625rem);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover,
a:focus {
    opacity: 0.7;
}

/* ========================================
   Layout Utilities (Mobile-First)
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Mobile: 16px sides */
}

/* ========================================
   Header & Navigation (Mobile-First)
   ======================================== */

.site-header {
    background-color: #F6F4EF;
    padding: 1rem 0;
    border-bottom: 1px solid #ECE8DF;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.wordmark {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
    z-index: 101;
}

.wordmark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wordmark-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.wordmark a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wordmark a:hover {
    opacity: 1;
}

/* Mobile Navigation Toggle (Hamburger) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px; /* Minimum tap target */
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1F1F1D;
    transition: all 0.3s ease;
}

.nav-toggle-icon {
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before {
    top: -7px;
}

.nav-toggle-icon::after {
    top: 7px;
}

/* Hamburger animation when open */
.site-header.nav-open .nav-toggle-icon {
    background-color: transparent;
}

.site-header.nav-open .nav-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.site-header.nav-open .nav-toggle-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile Navigation - Hidden by default */
.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #F6F4EF;
    border-bottom: 1px solid #ECE8DF;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.site-header.nav-open .main-nav {
    max-height: 400px;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    border-bottom: 1px solid #ECE8DF;
}

.main-nav li:last-child {
    border-bottom: none;
}

.main-nav a {
    display: block;
    padding: 1rem 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: center;
    min-height: 44px; /* Tap target */
}

/* ========================================
   Page Hero / Header (Mobile-First)
   ======================================== */

.page-hero {
    padding: 2rem 0 2.5rem;
    background-color: #F6F4EF;
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.page-subtitle {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: #6B5E4A;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Hero Section (Mobile-First)
   ======================================== */

.hero {
    padding: 3rem 0 4rem;
    background-color: #F6F4EF;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subheadline {
    font-size: clamp(1rem, 4vw, 1.125rem);
    line-height: 1.7;
    color: #6B5E4A;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

/* ========================================
   Buttons (Mobile-First)
   ======================================== */

.button {
    display: inline-block;
    width: 100%; /* Full width on mobile */
    max-width: 320px;
    min-height: 44px; /* Tap target */
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center;
    border: 1px solid #1F1F1D;
    transition: all 0.2s ease;
    cursor: pointer;
}

.button-primary {
    background-color: #1F1F1D;
    color: #F6F4EF;
}

.button-primary:hover,
.button-primary:focus {
    background-color: #6B5E4A;
    border-color: #6B5E4A;
    opacity: 1;
}

.button-secondary {
    background-color: transparent;
    color: #1F1F1D;
}

.button-secondary:hover,
.button-secondary:focus {
    background-color: #ECE8DF;
    opacity: 1;
}

/* ========================================
   Shop Filters (Mobile-First)
   ======================================== */

.shop-filters {
    padding: 2rem 0;
    background-color: #ECE8DF;
    border-bottom: 1px solid #6B5E4A;
}

.filters-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.filter-group label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #6B5E4A;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1F1F1D;
    background-color: #F6F4EF;
    border: 1px solid #6B5E4A;
    border-radius: 0;
    min-height: 44px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B5E4A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.filter-select:focus {
    outline: 2px solid #6B5E4A;
    outline-offset: 2px;
}

/* ========================================
   Shop Section (Mobile-First)
   ======================================== */

.shop-section {
    padding: 3rem 0;
    background-color: #F6F4EF;
}

/* ========================================
   Featured Products Section (Mobile-First)
   ======================================== */

.featured-products {
    padding: 3rem 0;
    background-color: #F6F4EF;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2.5rem;
}

.product-card {
    background-color: #F6F4EF;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    margin-bottom: 1rem;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #ECE8DF;
    transition: opacity 0.3s ease;
}

.product-card:hover .placeholder-image {
    opacity: 0.9;
}

.product-info {
    padding: 0 0.5rem;
}

.product-name {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.95rem;
    color: #6B5E4A;
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.product-price {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.product-button {
    width: 100%;
    max-width: none;
    font-size: 0.875rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #1F1F1D;
    color: #F6F4EF;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ========================================
   About Section (Mobile-First)
   ======================================== */

.about-section {
    padding: 3rem 0;
    background-color: #ECE8DF;
}

.about-content {
    max-width: 100%;
    margin: 0 auto;
}

.about-text {
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
    line-height: 1.8;
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: #6B5E4A;
    min-height: 44px; /* Tap target */
    line-height: 44px;
}

.text-link:hover,
.text-link:focus {
    opacity: 1;
    text-decoration: underline;
}

/* ========================================
   About Content Sections (Mobile-First)
   ======================================== */

.about-content-section {
    padding: 3rem 0;
    background-color: #F6F4EF;
}

.content-block {
    max-width: 700px;
    margin: 0 auto;
}

.content-block h3 {
    font-size: clamp(1.75rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
}

.content-block h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-block p {
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item h4 {
    margin-top: 0;
    color: #6B5E4A;
}

.process-list {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.process-list li {
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.process-list strong {
    font-weight: 500;
    color: #1F1F1D;
}

.values-section {
    padding: 3rem 0;
    background-color: #ECE8DF;
}

.process-section {
    padding: 3rem 0;
    background-color: #F6F4EF;
}

.image-divider {
    padding: 2rem 0;
    background-color: #F6F4EF;
}

.divider-image {
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   Journal Section (Mobile-First)
   ======================================== */

.journal-section {
    padding: 3rem 0;
    background-color: #F6F4EF;
}

.journal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.journal-entry {
    display: flex;
    flex-direction: column;
}

.journal-image {
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.journal-image .placeholder-image {
    transition: opacity 0.3s ease;
}

.journal-entry:hover .placeholder-image {
    opacity: 0.9;
}

.journal-content {
    flex: 1;
}

.journal-date {
    display: block;
    font-size: 0.875rem;
    color: #6B5E4A;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.journal-title {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    margin-bottom: 0.75rem;
}

.journal-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #1F1F1D;
    margin-bottom: 1rem;
}

.journal-link {
    display: inline-block;
    font-weight: 500;
    color: #6B5E4A;
    min-height: 44px;
    line-height: 44px;
}

.journal-link:hover,
.journal-link:focus {
    opacity: 1;
    text-decoration: underline;
}

/* ========================================
   Lookbook Section (Mobile-First)
   ======================================== */

.lookbook-section {
    padding: 3rem 0;
    background-color: #ECE8DF;
}

.section-intro {
    text-align: center;
    font-size: 1rem;
    color: #6B5E4A;
    margin-bottom: 2.5rem;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lookbook-item {
    overflow: hidden;
}

.lookbook-item .placeholder-image {
    transition: transform 0.3s ease;
}

.lookbook-item:hover .placeholder-image {
    transform: scale(1.02);
}

/* ========================================
   Gallery Section (Mobile-First)
   ======================================== */

.gallery-section {
    padding: 3rem 0;
    background-color: #F6F4EF;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.02);
}

/* ========================================
   Appointments Info Section (Mobile-First)
   ======================================== */

.appointments-info {
    padding: 3rem 0;
    background-color: #ECE8DF;
}

.info-content {
    max-width: 700px;
    margin: 0 auto;
}

.info-content h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-content p {
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ========================================
   Booking Form Section (Mobile-First)
   ======================================== */

.booking-section {
    padding: 3rem 0;
    background-color: #F6F4EF;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1F1F1D;
}

.required {
    color: #6B5E4A;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1F1F1D;
    background-color: #F6F4EF;
    border: 1px solid #6B5E4A;
    min-height: 44px;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1F1F1D;
}

.form-select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B5E4A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.form-actions .button {
    margin-bottom: 1rem;
}

.form-note {
    font-size: 0.875rem;
    color: #6B5E4A;
    font-style: italic;
    margin: 0;
}

/* ========================================
   Call to Action Section (Mobile-First)
   ======================================== */

.cta-section {
    padding: 3rem 0;
    background-color: #ECE8DF;
}

.cta-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.cta-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
    line-height: 1.7;
    color: #6B5E4A;
    margin-bottom: 1.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

/* ========================================
   Contact Section (Mobile-First)
   ======================================== */

.contact-section {
    padding: 3rem 0;
    background-color: #F6F4EF;
}

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

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

.info-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #6B5E4A;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-link {
    color: #6B5E4A;
    font-weight: 500;
}

.info-link:hover,
.info-link:focus {
    opacity: 1;
    text-decoration: underline;
}

.info-note {
    font-size: 0.875rem;
    color: #6B5E4A;
    font-style: italic;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    max-width: 100%;
}

/* ========================================
   Newsletter Section (Mobile-First)
   ======================================== */

.newsletter-section {
    padding: 3rem 0;
    background-color: #ECE8DF;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B5E4A;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 100%;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1F1F1D;
    background-color: #F6F4EF;
    border: 1px solid #6B5E4A;
    min-height: 44px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #1F1F1D;
}

.newsletter-button {
    width: 100%;
}

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

/* ========================================
   Footer (Mobile-First)
   ======================================== */

.site-footer {
    background-color: #1F1F1D;
    color: #ECE8DF;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-wordmark {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 0.5rem;
    color: #F6F4EF;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #7A7F6A;
    font-weight: 300;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #F6F4EF;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    display: inline-block;
    font-size: 0.95rem;
    color: #ECE8DF;
    min-height: 44px; /* Tap target */
    line-height: 44px;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #6B5E4A;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #7A7F6A;
    margin: 0;
}

/* ========================================
   Back To Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1.25rem;
    width: 64px;
    border: none;
    background: transparent;
    padding: 0;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    display: grid;
    justify-items: center;
}

.back-to-top img {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 12px;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .back-to-top {
        right: 1.5rem;
        bottom: 1.5rem;
        width: 72px;
    }
    .back-to-top img { width: 64px; height: 64px; }
}

/* ========================================
   Tablet Styles (min-width: 768px)
   ======================================== */

@media (min-width: 768px) {
    /* Layout */
    .container {
        padding: 0 1.5rem;
    }

    /* Header & Navigation */
    .nav-toggle {
        display: none; /* Hide hamburger on tablet+ */
    }

    .main-nav {
        position: static;
        max-height: none;
        border-bottom: none;
    }

    .main-nav ul {
        flex-direction: row;
        gap: 1.5rem;
    }

    .main-nav li {
        border-bottom: none;
    }

    .main-nav a {
        padding: 0.5rem 0;
    }

    /* Page Hero */
    .page-hero {
        padding: 3rem 0;
    }

    /* Shop Filters */
    .filters-row {
        flex-direction: row;
        gap: 1.5rem;
    }

    .filter-group {
        flex: 1;
    }

    /* Hero */
    .hero {
        padding: 4rem 0 5rem;
    }

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

    .hero-actions {
        flex-direction: row;
        gap: 1rem;
    }

    /* Buttons */
    .button {
        width: auto;
        padding: 0.875rem 2rem;
    }

    /* Products grid: 2 columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    /* Journal grid: 2 columns */
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    /* Lookbook grid: 2 columns */
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Gallery grid: 2 columns */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* About */
    .about-content {
        max-width: 700px;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }

    .newsletter-input-group {
        flex-direction: row;
    }

    .newsletter-input {
        flex: 1;
    }

    .newsletter-button {
        width: auto;
        white-space: nowrap;
    }

    /* CTA */
    .cta-content {
        max-width: 600px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1.5fr 2fr;
        gap: 3rem;
    }

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

/* ========================================
   Desktop Styles (min-width: 1024px)
   ======================================== */

@media (min-width: 1024px) {
    /* Layout */
    .container {
        padding: 0 2rem;
    }

    /* Header */
    .site-header {
        padding: 1.5rem 0;
    }

    /* Page Hero */
    .page-hero {
        padding: 4rem 0;
    }

    /* Hero */
    .hero {
        padding: 6rem 0 7rem;
    }

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

    /* Section spacing */
    .featured-products,
    .shop-section,
    .about-section,
    .about-content-section,
    .values-section,
    .process-section,
    .appointments-info,
    .booking-section,
    .journal-section,
    .lookbook-section,
    .gallery-section,
    .contact-section,
    .newsletter-section,
    .cta-section {
        padding: 6rem 0;
    }

    .image-divider {
        padding: 3rem 0;
    }

    /* Products grid: 3 columns */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Journal grid: 3 columns */
    .journal-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Lookbook grid: 3 columns */
    .lookbook-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Gallery grid: 4 columns */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Footer */
    .site-footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        margin-bottom: 3rem;
    }

    .footer-bottom {
        padding-top: 2rem;
    }
}

/* ========================================
   Large Desktop Styles (min-width: 1440px)
   ======================================== */

@media (min-width: 1440px) {
    .hero-headline {
        font-size: 4.5rem;
    }
}

/* ========================================
   Accessibility & Print Styles
   ======================================== */

/* Focus states for keyboard navigation */
a:focus,
button:focus,
.button:focus {
    outline: 2px solid #6B5E4A;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
