 /* 
         * DESIGN SYSTEM & VARIABLES 
         */
 :root {
     --color-bg: #fbf9f4;
     /* Cream / Off-white */
     --color-text-main: #3e2b26;
     /* Chocolate */
     --color-accent: #c59d5f;
     /* Soft Gold */
     --color-accent-hover: #a68146;
     --color-white: #ffffff;
     --font-display: 'Playfair Display', serif;
     --font-body: 'Lato', sans-serif;
     --font-script: 'Dancing Script', cursive;

     --spacing-container: 1280px;
     --radius-soft: 12px;
     --radius-pill: 50px;
 }

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

 body {
     font-family: var(--font-body);
     background-color: var(--color-bg);
     color: var(--color-text-main);
     line-height: 1.7;
     -webkit-font-smoothing: antialiased;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: var(--font-display);
     font-weight: 700;
     line-height: 1.2;
 }

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

 a {
     text-decoration: none;
     color: inherit;
     transition: all 0.3s ease;
 }

 p {
     margin-bottom: 1.5rem;
     font-weight: 300;
     color: #5d4d49;
 }

 /* Utilities */
 .container {
     max-width: var(--spacing-container);
     margin: 0 auto;
     padding: 0 30px;
 }

 .highlight-script {
     font-family: var(--font-script);
     color: var(--color-accent);
     font-size: 1.5em;
     display: inline-block;
     transform: rotate(-3deg);
 }

 .btn-order {
     display: inline-block;
     background-color: var(--color-text-main);
     color: var(--color-white);
     padding: 14px 40px;
     border-radius: var(--radius-pill);
     font-weight: 700;
     letter-spacing: 0.5px;
     text-transform: uppercase;
     font-size: 0.9rem;
     box-shadow: 0 4px 15px rgba(62, 43, 38, 0.2);
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .btn-order::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 0%;
     height: 100%;
     background-color: var(--color-accent);
     transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
     z-index: -1;
 }

 .btn-order:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(62, 43, 38, 0.3);
 }

 .btn-order:hover::before {
     width: 100%;
 }

 /* 
         * NAVIGATION 
         */
 .navbar {
     padding: 40px 0;
     position: absolute;
     top: 0;
     width: 100%;
     z-index: 100;
 }

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

 .brand {
     font-family: var(--font-display);
     font-size: 2rem;
     font-weight: 700;
     letter-spacing: -1px;
 }

 .nav-links {
     display: flex;
     gap: 40px;
 }

 .nav-links a {
     font-family: var(--font-display);
     font-size: 1.1rem;
     position: relative;
 }

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

 .nav-links a:hover::after {
     width: 100%;
 }

 /* 
         * HERO SECTION (Asymmetric)
         */
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding-top: 100px;
     /* Space for nav */
     position: relative;
     overflow: hidden;
 }

 /* Background texture simulation using CSS radial gradient */
 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 80%;
     height: 150%;
     background: linear-gradient(135deg, rgba(197, 157, 95, 0.1) 0%, rgba(251, 249, 244, 0) 70%);
     border-radius: 50%;
     z-index: -1;
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 1.2fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .hero-title {
     font-size: clamp(3.5rem, 6vw, 5.5rem);
     margin-bottom: 1.5rem;
     letter-spacing: -2px;
     line-height: 1;
 }

 .hero-title span {
     color: var(--color-accent);
     font-style: italic;
 }

 .hero-image-wrapper {
     position: relative;
     z-index: 1;
 }

 /* Organic shape via border-radius */
 .hero-img {
     width: 100%;
     border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
     animation: morph 8s ease-in-out infinite;
     object-fit: cover;
     aspect-ratio: 1/1.1;
 }

 @keyframes morph {
     0% {
         border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     }

     50% {
         border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
     }

     100% {
         border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     }
 }

 /* 
         * STORY SECTION (ZigZag)
         */
 .story {
     padding: 120px 0;
 }

 /* SVG Wave Divider */
 .wave-divider {
     position: absolute;
     left: 0;
     width: 100%;
     line-height: 0;
     direction: ltr;
 }

 .story-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     margin-bottom: 120px;
 }

 .story-row.reverse {
     margin-bottom: 0;
 }

 /* Responsive ordering for zig zag */
 .story-row.reverse .story-content {
     order: -1;
 }

 .story-img {
     border-radius: 4px;
     /* Arch shape */
     border-radius: 200px 200px 20px 20px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(62, 43, 38, 0.1);
 }

 .story-content h2 {
     font-size: 3rem;
     margin-bottom: 1.5rem;
 }

 .ornament {
     width: 60px;
     height: 2px;
     background-color: var(--color-accent);
     margin-bottom: 30px;
 }

 /* 
         * PRODUCTS (Editorial Cards)
         */
 .products {
     padding: 0 0 120px 0;
 }

 .products-header {
     text-align: center;
     margin-bottom: 80px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .products-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 40px;
 }

 .card {
     background-color: var(--color-white);
     border-radius: 20px;
     padding: 20px;
     transition: transform 0.4s ease, box-shadow 0.4s ease;
     position: relative;
     border: 1px solid rgba(0, 0, 0, 0.03);
     display: flex;
     flex-direction: column;
 }

 .card:hover {
     transform: translateY(-15px);
     box-shadow: 0 30px 60px rgba(62, 43, 38, 0.1);
 }

 .card-img-container {
     border-radius: 15px;
     overflow: hidden;
     margin-bottom: 25px;
     position: relative;
     padding-top: 110%;
     /* Tall aspect ratio */
 }

 .card-img-container img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
 }

 .card:hover .card-img-container img {
     transform: scale(1.1);
 }

 .card-meta {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 15px;
 }

 .card-title {
     font-size: 1.5rem;
     font-family: var(--font-display);
 }

 .card-price {
     font-family: var(--font-script);
     /* Handwritten style */
     font-size: 1.8rem;
     color: var(--color-accent);
 }

 .card-desc {
     font-size: 0.95rem;
     margin-bottom: 30px;
     flex-grow: 1;
 }

 /* 
         * FOOTER
         */
 footer {
     background-color: var(--color-text-main);
     color: var(--color-bg);
     padding: 80px 0 30px;
     position: relative;
 }

 /* Footer wave top */
 .footer-wave {
     position: absolute;
     top: -50px;
     left: 0;
     width: 100%;
     height: 50px;
     /* Simple SVG wave data URI could go here, simulating with border-radius for speed in code size */
     background-color: var(--color-text-main);
     border-radius: 50% 50% 0 0 / 100% 100% 0 0;
     transform: scaleX(1.5);
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 50px;
     margin-bottom: 60px;
 }

 .footer-brand h2 {
     font-size: 2.5rem;
     margin-bottom: 20px;
     color: var(--color-accent);
 }

 .social-circle {
     display: inline-flex;
     width: 45px;
     height: 45px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     align-items: center;
     justify-content: center;
     margin-right: 10px;
     transition: 0.3s;
 }

 .social-circle:hover {
     border-color: var(--color-accent);
     color: var(--color-accent);
 }

 @media (max-width: 900px) {
     .hero-grid {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .hero-image-wrapper {
         order: -1;
         margin-bottom: 40px;
     }

     .hero-img {
         width: 80%;
         margin: 0 auto;
         aspect-ratio: 1/1;
     }

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

     .story-row.reverse .story-content {
         order: 0;
     }

     .story-img {
         order: -1;
     }

     .nav-links {
         display: none;
     }

     /* Mobile Menu Placeholder */
 }