/* ================================================
   CHAN HOM — Modern Minimal Website
   Design System & Stylesheet
   ================================================ */

/* ── CSS Variables — Palette from brand image ── */
:root {
    /* Colors — Warm off-white + olive gold + charcoal */
    --primary: #4A4A4A;
    --primary-light: #6B6B6B;
    --accent: #B5A06A;
    --accent-light: #D4C69A;
    --accent-dark: #96834A;
    --olive: #8B8544;
    --bg: #F7F5F1;
    --bg-alt: #F0ECE5;
    --surface: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #8C8C8C;
    --text-muted: #ABABAB;
    --border: #E8E4DD;
    --border-light: #F0ECE8;

    /* Typography */
    --font-th: 'Noto Sans Thai', sans-serif;
    --font-en: 'Inter', sans-serif;

    /* Spacing */
    --section-py: 120px;
    --container-max: 1200px;

    /* Effects */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-accent: 0 6px 24px rgba(181, 160, 106, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.25s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-th);
    color: var(--text);
    line-height: 1.75;
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

address {
    font-style: normal;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-family: var(--font-th);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

h2 {
    font-family: var(--font-th);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1.5px solid transparent;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--accent);
    color: var(--surface);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--surface);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: var(--surface);
    color: var(--primary);
    border-color: var(--surface);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    background: var(--primary);
    color: var(--surface);
    border-radius: 50px;
}

.btn-sm:hover {
    background: #1A1A1A;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-en {
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--surface);
    letter-spacing: 4px;
    transition: var(--transition-fast);
}

.logo-th {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 4px;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-en {
    color: var(--primary);
}

.navbar.scrolled .logo-th {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--surface);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--text-light);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
    background: var(--bg-alt);
}

.nav-link.active {
    color: var(--surface);
}

.navbar.scrolled .nav-link.active {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--surface) !important;
    font-weight: 500;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 100;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--surface);
    border-radius: 2px;
    transition: var(--transition);
    position: absolute;
    left: 5px;
}

.hamburger {
    top: 15px;
}

.hamburger::before {
    content: '';
    top: -7px;
}

.hamburger::after {
    content: '';
    top: 7px;
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--primary);
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url('./image/hero_minimal.png') center / cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(60, 50, 35, 0.65) 0%,
            rgba(50, 45, 30, 0.55) 50%,
            rgba(60, 50, 35, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 140px 0 100px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--surface);
    margin-bottom: 24px;
    font-weight: 600;
}

.brand-highlight {
    color: var(--accent-light);
    font-weight: 400;
    font-size: 0.85em;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    width: 3px;
    height: 6px;
    background: var(--accent-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 16px;
        opacity: 0.2;
    }
}

/* ================================================
   SERVICES
   ================================================ */
.services {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--surface);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    background: var(--bg-alt);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--surface);
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--accent-dark);
    gap: 10px;
}

.service-link i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

/* ================================================
   PRODUCTS
   ================================================ */
.products {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border: 1.5px solid var(--accent);
}

.product-visual {
    position: relative;
    height: 260px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-hot {
    background: #D0615E;
    color: var(--surface);
}

.badge-best {
    background: var(--olive);
    color: var(--surface);
}

.badge-premium {
    background: var(--accent);
    color: var(--surface);
}

.product-body {
    padding: 24px;
}

.product-body p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

/* ================================================
   CEREMONY SOUVENIRS
   ================================================ */
.ceremony {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.ceremony-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.ceremony-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.ceremony-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.ceremony-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.ceremony-card:hover .ceremony-image img {
    transform: scale(1.05);
}

.ceremony-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 45, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.ceremony-card:hover .ceremony-overlay {
    opacity: 1;
}

.ceremony-body {
    padding: 28px;
}

.ceremony-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ceremony-label i {
    font-size: 0.7rem;
}

.ceremony-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.ceremony-body p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 300;
}

.ceremony-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ceremony-features li {
    font-size: 0.83rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.ceremony-features li i {
    font-size: 0.65rem;
    color: var(--accent);
    width: 14px;
}

.ceremony-cta {
    text-align: center;
    padding: 48px;
    background: var(--bg);
    border-radius: var(--radius-lg);
}

.ceremony-cta p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 300;
}

/* ================================================
   PAGE HERO (sub-pages)
   ================================================ */
.page-hero {
    padding: 140px 0 60px;
    background: var(--bg-alt);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ================================================
   SECTION CTA (view all button)
   ================================================ */
.section-cta {
    text-align: center;
    margin-top: 48px;
}

.contact-cta-section {
    padding: 80px 0;
    background: var(--surface);
}

.contact-cta-section .ceremony-cta {
    background: var(--bg);
}

.contact-cta-section h2 {
    margin-bottom: 12px;
}

/* ================================================
   ABOUT
   ================================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.9;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 400;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.stars i {
    margin-right: 2px;
}

blockquote {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

cite {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.contact-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-card.highlight {
    background: var(--accent);
    color: var(--surface);
    border: none;
}

.contact-card.highlight h3,
.contact-card.highlight p {
    color: var(--surface);
}

.contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: var(--bg-alt);
    color: var(--accent);
}

.contact-card.highlight .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--surface);
}

.contact-card h3 {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 2px;
    font-weight: 400;
}

.contact-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-th);
    font-size: 0.95rem;
    background: var(--bg);
    transition: var(--transition-fast);
    color: var(--text);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%238C8C8C'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(181, 160, 106, 0.1);
    background: var(--surface);
}

.form-group textarea {
    resize: vertical;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
    background: #2D2D2D;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.footer-logo .logo-en {
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--surface);
    letter-spacing: 3px;
}

.footer-logo .logo-th {
    font-size: 0.65rem;
    color: var(--accent-light);
    letter-spacing: 3px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

footer h4 {
    color: var(--surface);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-nav a:hover {
    color: var(--accent-light);
}

.footer-contact address p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 300;
}

.footer-contact i {
    color: var(--accent);
    width: 14px;
    text-align: center;
    margin-top: 4px;
    font-size: 0.8rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--surface);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: var(--accent-light);
}

/* ================================================
   ANIMATIONS (Scroll Reveal)
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    :root {
        --section-py: 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .product-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .ceremony-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 60px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-img {
        height: 320px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 4px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text) !important;
        padding: 12px 20px;
        width: 100%;
    }

    .nav-link:hover {
        background: var(--bg) !important;
    }

    .hero-content {
        padding: 120px 0 80px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-stats {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .ceremony-cta {
        padding: 32px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}