@charset "utf-8"; :root, [data-theme="light"] { --cap-blue: #4FB3DB; --cap-blue-deep: #2E86AB; --leaf-green: #5CB85C; --leaf-deep: #3D8B3D; --water-clear: #E8F4F8; --bg-primary: #FAF7F0; --bg-secondary: #F0EBE0; --bg-tertiary: #E8E1D0; --bg-inverse: #1A2332; --text-primary: #1A2332; --text-secondary: #4A5568; --text-tertiary: #8A95A8; --text-inverse: #FAF7F0; --border-soft: rgba(26, 35, 50, 0.08); --border-strong: rgba(26, 35, 50, 0.2); --accent-gold: #C9A961; --moss: #2D4A2B; --shadow-md: 0 20px 50px -20px rgba(26, 35, 50, 0.25); --shadow-lg: 0 30px 80px -30px rgba(26, 35, 50, 0.4); } [data-theme="dark"] { --cap-blue: #6BC5E3; --cap-blue-deep: #4FB3DB; --leaf-green: #7DD87D; --leaf-deep: #5CB85C; --bg-primary: #0E1620; --bg-secondary: #151E2A; --bg-tertiary: #1F2A38; --bg-inverse: #FAF7F0; --text-primary: #F5F1E8; --text-secondary: #B8C0CC; --text-tertiary: #6A7585; --text-inverse: #1A2332; --border-soft: rgba(245, 241, 232, 0.08); --border-strong: rgba(245, 241, 232, 0.2); --accent-gold: #E3C381; --moss: #4A6E48; --shadow-md: 0 20px 50px -20px rgba(0, 0, 0, 0.6); --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.8); } :root { --serif: 'Instrument Serif', Georgia, serif; --sans: 'Bricolage Grotesque', system-ui, sans-serif; --hand: 'Caveat', cursive; --ease-out: cubic-bezier(0.22, 1, 0.36, 1); } * { margin: 0px; padding: 0px; box-sizing: border-box; } html { scroll-behavior: smooth; background: var(--bg-primary); transition: background 0.5s; } body { background: var(--bg-primary); color: var(--text-primary); font-family: var(--sans); font-weight: 400; line-height: 1.6; overflow-x: hidden; position: relative; transition: background 0.5s, color 0.5s; } body::before { content: ""; position: fixed; inset: 0px; pointer-events: none; z-index: 9998; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); mix-blend-mode: multiply; } nav { position: fixed; top: 0px; left: 0px; right: 0px; z-index: 100; padding: 1.4rem 3rem; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(20px) saturate(180%); background: rgba(250, 247, 240, 0.65); border-bottom: 1px solid var(--border-soft); transition: background 0.5s; } [data-theme="dark"] nav { background: rgba(14, 22, 32, 0.7); } @media (max-width: 768px) { nav { padding: 1rem 1.5rem; } } .nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-size: 1.6rem; color: var(--text-primary); font-weight: 400; } .nav-logo em { font-style: italic; color: var(--leaf-green); } .nav-right { display: flex; align-items: center; gap: 1.25rem; } .nav-social { display: flex; align-items: center; gap: 0.4rem; padding-right: 1.25rem; border-right: 1px solid var(--border-soft); } .nav-social a { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-primary); transition: all 0.3s var(--ease-out); position: relative; } .nav-social a:hover { background: var(--leaf-green); color: var(--bg-primary); transform: translateY(-2px); } .nav-social svg { width: 16px; height: 16px; } @media (max-width: 1100px) { .nav-social { display: none; } } .nav-menu { display: flex; align-items: center; gap: 1.75rem; list-style: none; } .nav-menu a { color: var(--text-primary); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; transition: color 0.3s; } .nav-menu a:hover { color: var(--leaf-green); } .nav-cta-wrap { position: relative; } .nav-cta { background: var(--text-primary); padding: 0.65rem 1.3rem; border-radius: 100px; display: inline-flex; align-items: center; gap: 0.45rem; cursor: pointer; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; color: var(--bg-primary) !important; transition: 0.3s !important; } .nav-cta:hover { background: var(--leaf-green); transform: translateY(-2px); color: var(--bg-primary) !important; } .nav-cta svg { width: 11px; height: 11px; transition: transform 0.3s var(--ease-out); } .nav-cta-wrap.open .nav-cta svg { transform: rotate(180deg); } .nav-dropdown { position: absolute; top: calc(100% + 0.6rem); right: 0px; min-width: 240px; background: var(--bg-primary); border: 1px solid var(--border-soft); border-radius: 14px; padding: 0.55rem; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.3s var(--ease-out); z-index: 110; backdrop-filter: blur(20px); } [data-theme="dark"] .nav-dropdown { background: var(--bg-secondary); } .nav-cta-wrap.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0px); } .nav-dropdown a { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1rem; border-radius: 10px; text-decoration: none; color: var(--text-primary); transition: 0.25s; font-size: 0.85rem; text-transform: none; letter-spacing: 0px; } .nav-dropdown a:hover { background: var(--bg-secondary); color: var(--leaf-green); } [data-theme="dark"] .nav-dropdown a:hover { background: var(--bg-tertiary); } .nav-dropdown-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--leaf-green); transition: 0.25s; } [data-theme="dark"] .nav-dropdown-icon { background: var(--bg-tertiary); } .nav-dropdown a:hover .nav-dropdown-icon { background: var(--leaf-green); color: var(--bg-primary); } .nav-dropdown-text { display: flex; flex-direction: column; gap: 0.1rem; } .nav-dropdown-title { font-weight: 600; font-size: 0.88rem; color: var(--text-primary); } .nav-dropdown-sub { font-size: 0.72rem; color: var(--text-secondary); letter-spacing: 0.02em; } .theme-toggle { width: 50px; height: 28px; border-radius: 100px; background: var(--bg-tertiary); border: 1px solid var(--border-soft); position: relative; cursor: pointer; transition: background 0.3s; } .theme-toggle-thumb { position: absolute; top: 2px; left: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--text-primary); transition: transform 0.4s var(--ease-out), background 0.3s; display: flex; align-items: center; justify-content: center; color: var(--bg-primary); } [data-theme="dark"] .theme-toggle-thumb { transform: translateX(22px); background: var(--leaf-green); } @media (max-width: 950px) { .nav-menu li.menu-item { display: none; } } .hero { min-height: 100vh; padding: 8rem 3rem 4rem; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1600px; margin: 0px auto; } @media (max-width: 900px) { .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 3rem; } } .water-bg { position: absolute; inset: 0px; pointer-events: none; z-index: 0; overflow: hidden; } .water-wave { position: absolute; border-radius: 50%; border: 2px solid var(--cap-blue); opacity: 0; animation: 8s ease-out 0s infinite normal none running rippleExpand; } .water-wave-1 { top: 20%; left: 30%; width: 100px; height: 100px; animation-delay: 0s; } .water-wave-2 { top: 60%; left: 40%; width: 100px; height: 100px; animation-delay: 2.5s; } .water-wave-3 { top: 35%; left: 20%; width: 100px; height: 100px; animation-delay: 5s; } @keyframes rippleExpand { 0% { transform: scale(0); opacity: 0.6; } 100% { transform: scale(8); opacity: 0; } } .droplet { position: absolute; width: 6px; height: 10px; background: var(--cap-blue); border-radius: 50% 50% 50% 0px; transform: rotate(-45deg); opacity: 0; animation: 4s ease-in 0s infinite normal none running dropletFall; } .droplet:nth-child(4) { left: 15%; animation-delay: 0s; } .droplet:nth-child(5) { left: 25%; animation-delay: 1.3s; } .droplet:nth-child(6) { left: 40%; animation-delay: 0.6s; } .droplet:nth-child(7) { left: 55%; animation-delay: 2.1s; } .droplet:nth-child(8) { left: 70%; animation-delay: 1.5s; } .droplet:nth-child(9) { left: 85%; animation-delay: 0.8s; } @keyframes dropletFall { 0% { top: -20px; opacity: 0; transform: rotate(-45deg) scale(0.5); } 20% { opacity: 0.6; } 100% { top: 110%; opacity: 0; transform: rotate(-45deg) scale(1.2); } } .hero-bg-type { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--serif); font-size: clamp(15rem, 35vw, 30rem); color: var(--leaf-green); opacity: 0.05; line-height: 0.9; font-style: italic; pointer-events: none; white-space: nowrap; z-index: 0; user-select: none; } .hero-content { position: relative; z-index: 2; } .hero-eyebrow { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 2.5rem; font-weight: 500; opacity: 0; animation: 0.8s ease 0.2s 1 normal forwards running fadeUp; } .hero-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--leaf-green); } .hero h1 { font-family: var(--serif); font-size: clamp(3.5rem, 9vw, 8rem); line-height: 0.92; font-weight: 400; color: var(--text-primary); letter-spacing: -0.04em; margin-bottom: 2.5rem; } .hero h1 .reveal-word { display: inline-block; overflow: hidden; vertical-align: top; } .hero h1 .reveal-word span { display: inline-block; transform: translateY(110%); animation: revealUp 1.1s var(--ease-out) forwards; } .hero h1 .italic { font-style: italic; color: var(--leaf-green); } .hero h1 .reveal-word:nth-child(1) span { animation-delay: 0.4s; } .hero h1 .reveal-word:nth-child(2) span { animation-delay: 0.55s; } .hero h1 .reveal-word:nth-child(3) span { animation-delay: 0.7s; } .hero h1 .reveal-word:nth-child(4) span { animation-delay: 0.85s; } .hero-meta { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); opacity: 0; animation: 0.8s ease 1.3s 1 normal forwards running fadeUp; flex-wrap: wrap; } .hero-meta-item { display: flex; flex-direction: column; gap: 0.3rem; } .hero-meta-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-secondary); font-weight: 500; } .hero-meta-value { font-family: var(--serif); font-size: 1.3rem; color: var(--text-primary); font-style: italic; } .hero-photo-wrap { position: relative; aspect-ratio: 3 / 4; z-index: 2; opacity: 0; animation: 1.5s ease 0.6s 1 normal forwards running fadeIn, 6s ease-in-out 1.5s infinite normal none running heroFloat; display: flex; align-items: center; justify-content: center; } @keyframes heroFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-22px); } } .hero-photo-wrap::before { content: ""; position: absolute; top: 50%; left: 50%; width: 75%; height: 75%; background: radial-gradient(circle, var(--leaf-green) 0%, transparent 65%); opacity: 0.18; transform: translate(-50%, -50%); border-radius: 50%; filter: blur(30px); pointer-events: none; z-index: 0; animation: 5s ease-in-out 0s infinite normal none running haloPulse; } [data-theme="dark"] .hero-photo-wrap::before { opacity: 0.28; } @keyframes haloPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.18; } 50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.28; } } [data-theme="dark"] .hero-photo-wrap::before { animation-name: haloPulseDark; } @keyframes haloPulseDark { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.28; } 50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.38; } } .hero-photo-shadow { position: absolute; bottom: 4%; left: 50%; width: 55%; height: 22px; background: radial-gradient(rgba(26, 35, 50, 0.35) 0%, transparent 70%); transform: translateX(-50%); filter: blur(8px); z-index: 1; animation: 6s ease-in-out 1.5s infinite normal none running shadowFloat; } [data-theme="dark"] .hero-photo-shadow { background: radial-gradient(rgba(0, 0, 0, 0.5) 0%, transparent 70%); } @keyframes shadowFloat { 0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; } 50% { transform: translateX(-50%) scale(0.75); opacity: 0.35; } } .hero-bottle-svg { position: relative; z-index: 2; width: 78%; height: auto; max-height: 92%; filter: drop-shadow(rgba(26, 35, 50, 0.15) 0px 30px 40px); transition: transform 0.6s var(--ease-out); } [data-theme="dark"] .hero-bottle-svg { filter: drop-shadow(rgba(0, 0, 0, 0.5) 0px 30px 40px); } .hero-photo-wrap:hover .hero-bottle-svg { transform: scale(1.04) rotate(-2deg); } .photo-tag { position: absolute; bottom: 6%; right: 4%; background: var(--bg-primary); backdrop-filter: blur(12px); padding: 0.85rem 1.3rem; border-radius: 100px; z-index: 4; box-shadow: var(--shadow-md); border: 1px solid var(--border-soft); display: flex; align-items: center; gap: 0.75rem; animation: 7s ease-in-out 2s infinite normal none running tagFloat; } @keyframes tagFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } } .photo-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf-green); box-shadow: rgba(92, 184, 92, 0.25) 0px 0px 0px 3px; animation: 2s ease-in-out 0s infinite normal none running pinPulse; } .photo-tag-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-secondary); font-weight: 500; line-height: 1; margin-bottom: 0.2rem; } .photo-tag-value { font-family: var(--serif); font-size: 0.95rem; font-style: italic; color: var(--text-primary); line-height: 1; } .bottle-badge { position: absolute; top: 4%; right: 2%; background: var(--text-primary); color: var(--bg-primary); width: 110px; height: 110px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 4; box-shadow: var(--shadow-md); animation: 12s linear 0s infinite normal none running badgeRotate, 7s ease-in-out 2s infinite normal none running tagFloat; } @keyframes badgeRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .bottle-badge-inner { animation: 12s linear 0s infinite normal none running badgeCounter; text-align: center; font-family: var(--serif); } @keyframes badgeCounter { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } } .bottle-badge .big { font-size: 1.5rem; font-style: italic; line-height: 1; } .bottle-badge .small { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--sans); margin-top: 0.3rem; font-weight: 600; } .photo-leaf { position: absolute; pointer-events: none; z-index: 5; animation: 6s ease-in-out 0s infinite normal none running leafSway; } .photo-leaf-1 { top: 8%; left: 2%; width: 70px; height: 70px; transform: rotate(-30deg); } .photo-leaf-2 { bottom: 12%; left: 10%; width: 55px; height: 55px; transform: rotate(45deg); animation-delay: 2s; } .photo-leaf-3 { top: 35%; right: 8%; width: 45px; height: 45px; transform: rotate(15deg); animation-delay: 1s; opacity: 0.7; } @keyframes leafSway { 0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); } 50% { transform: translate(8px, -10px) rotate(calc(var(--rot, 0deg) + 8deg)); } } .photo-leaf-1 { --rot: -30deg; } .photo-leaf-2 { --rot: 45deg; } .photo-leaf-3 { --rot: 15deg; } .scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0; animation: 1s ease 1.8s 1 normal forwards running fadeUp; z-index: 3; } .scroll-indicator-text { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-secondary); } .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--text-primary), transparent); animation: 2s ease-in-out 0s infinite normal none running scrollPulse; } @keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: 0.5; } 50% { transform: scaleY(1.3); opacity: 1; } } @keyframes revealUp { 100% { transform: translateY(0px); } } @keyframes fadeUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0px); } } @keyframes fadeIn { 100% { opacity: 1; } } .marquee { background: var(--bg-inverse); color: var(--text-inverse); padding: 1.5rem 0px; overflow: hidden; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); } .marquee-track { display: flex; gap: 4rem; white-space: nowrap; animation: 30s linear 0s infinite normal none running marqueeScroll; font-family: var(--serif); font-size: 2rem; font-style: italic; } .marquee-track > span { display: inline-flex; align-items: center; gap: 4rem; } .marquee-track .dot { color: var(--leaf-green); font-size: 1rem; } @keyframes marqueeScroll { 0% { transform: translateX(0px); } 100% { transform: translateX(-50%); } } section { position: relative; z-index: 2; } .content-wrap { max-width: 1600px; margin: 0px auto; padding: 7rem 3rem; } @media (max-width: 768px) { .content-wrap { padding: 5rem 1.5rem; } } .section-label { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--leaf-green); font-weight: 500; margin-bottom: 1.5rem; } .section-label::before { content: ""; width: 30px; height: 1px; background: var(--leaf-green); } .section-headline { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); line-height: 0.95; font-weight: 400; color: var(--text-primary); letter-spacing: -0.03em; margin-bottom: 2rem; } .section-headline em { font-style: italic; color: var(--leaf-green); } .story { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); overflow: hidden; } .story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; } @media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 3rem; } } .story-collage { position: relative; aspect-ratio: 4 / 5; } .story-photo { position: absolute; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.6s var(--ease-out); } .story-photo img { width: 100%; height: 100%; object-fit: cover; } .story-photo-1 { inset: 0px 35% 25% 0px; z-index: 3; transform: rotate(-4deg); } .story-photo-2 { inset: 18% 0px 0px 30%; z-index: 2; transform: rotate(5deg); } .story-photo-3 { inset: 50% 25% 0px 10%; z-index: 4; transform: rotate(-7deg); background: var(--bg-primary); padding: 1.2rem; text-align: center; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--border-soft); } .story-collage:hover .story-photo-1 { transform: rotate(-6deg) translateY(-10px); } .story-collage:hover .story-photo-2 { transform: rotate(7deg) translateY(-15px); } .story-collage:hover .story-photo-3 { transform: rotate(-9deg) translateY(-20px); } .handwritten-quote { font-family: var(--hand); font-size: 1.3rem; line-height: 1.4; color: var(--text-primary); } .handwritten-attr { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); margin-top: 0.8rem; } .story-text p { font-size: 1.05rem; line-height: 1.8; color: var(--text-primary); margin-bottom: 1.5rem; } .story-text p:first-of-type::first-letter { font-family: var(--serif); font-size: 5rem; float: left; line-height: 0.85; margin: 0.2rem 0.8rem 0px 0px; color: var(--leaf-green); font-style: italic; } .story-pullquote { font-family: var(--serif); font-size: 1.7rem; font-style: italic; color: var(--leaf-green); line-height: 1.3; margin: 2rem 0px; padding: 1rem 0px 1rem 2rem; border-left: 2px solid var(--leaf-green); } .products { background: var(--bg-inverse); color: var(--text-inverse); overflow: hidden; padding: 0px; } .products-header { padding: 7rem 3rem 4rem; max-width: 1600px; margin: 0px auto; display: flex; justify-content: space-between; align-items: end; gap: 3rem; flex-wrap: wrap; } .products-header .section-headline { color: var(--text-inverse); max-width: 700px; } .products-header .section-label { color: var(--cap-blue); } .products-header .section-label::before { background: var(--cap-blue); } .products-header p { max-width: 380px; color: rgba(250, 247, 240, 0.7); font-size: 1rem; } [data-theme="dark"] .products-header p { color: rgba(26, 35, 50, 0.7); } @media (max-width: 768px) { .products-header { padding: 5rem 1.5rem 3rem; } } .products-track { display: flex; gap: 2rem; padding: 2rem 3rem 7rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; } .products-track::-webkit-scrollbar { display: none; } @media (max-width: 768px) { .products-track { padding: 2rem 1.5rem 5rem; } } .product-card { flex: 0 0 420px; scroll-snap-align: center; background: rgba(250, 247, 240, 0.04); border: 1px solid rgba(250, 247, 240, 0.1); border-radius: 12px; padding: 0px; backdrop-filter: blur(20px); transition: all 0.5s var(--ease-out); position: relative; overflow: hidden; } [data-theme="dark"] .product-card { background: rgba(26, 35, 50, 0.4); border-color: rgba(26, 35, 50, 0.3); } @media (max-width: 768px) { .product-card { flex: 0 0 85vw; } } .product-card:hover { border-color: var(--cap-blue); transform: translateY(-8px); } .product-photo-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: linear-gradient(135deg, var(--cap-blue) 0%, var(--cap-blue-deep) 100%); } .product-photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); } .product-card:hover .product-photo-wrap img { transform: scale(1.08); } .product-number { position: absolute; top: 1rem; left: 1.5rem; font-family: var(--serif); font-size: 4rem; font-style: italic; color: rgba(250, 247, 240, 0.95); line-height: 1; text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 20px; z-index: 2; } .product-info { padding: 2rem 2.5rem 2.5rem; } .product-tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cap-blue); font-weight: 500; margin-bottom: 0.6rem; } .product-card.featured .product-tag { color: var(--leaf-green); } .product-title { font-family: var(--serif); font-size: 2.2rem; line-height: 1; color: var(--text-inverse); margin-bottom: 0.5rem; letter-spacing: -0.02em; } .product-title em { font-style: italic; } .product-volume { font-family: var(--serif); font-size: 1.05rem; color: rgba(250, 247, 240, 0.6); font-style: italic; margin-bottom: 1.5rem; } [data-theme="dark"] .product-volume { color: rgba(26, 35, 50, 0.6); } .product-description { font-size: 0.92rem; line-height: 1.6; color: rgba(250, 247, 240, 0.75); margin-bottom: 2rem; } [data-theme="dark"] .product-description { color: rgba(26, 35, 50, 0.75); } .product-specs { display: grid; gap: 0.8rem; padding-top: 1.5rem; border-top: 1px solid rgba(250, 247, 240, 0.1); } [data-theme="dark"] .product-specs { border-top-color: rgba(26, 35, 50, 0.15); } .product-spec { display: flex; justify-content: space-between; font-size: 0.85rem; } .product-spec-label { color: rgba(250, 247, 240, 0.5); } [data-theme="dark"] .product-spec-label { color: rgba(26, 35, 50, 0.5); } .product-spec-value { color: var(--text-inverse); font-weight: 500; } .scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 0.8rem; color: rgba(250, 247, 240, 0.5); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; pointer-events: none; } [data-theme="dark"] .scroll-hint { color: rgba(26, 35, 50, 0.5); } .scroll-arrow-anim { width: 30px; height: 1px; background: rgba(250, 247, 240, 0.5); position: relative; overflow: hidden; } [data-theme="dark"] .scroll-arrow-anim { background: rgba(26, 35, 50, 0.5); } .scroll-arrow-anim::after { content: ""; position: absolute; left: 0px; top: 0px; width: 15px; height: 100%; background: var(--text-inverse); animation: 1.5s ease-in-out 0s infinite normal none running scrollHint; } @keyframes scrollHint { 0% { left: -50%; } 100% { left: 100%; } } .testimonials { background: var(--bg-primary); overflow: hidden; } .testi-header { max-width: 700px; margin-bottom: 4rem; } .testi-header p { color: var(--text-secondary); font-size: 1.05rem; margin-top: 1rem; max-width: 550px; } .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; } @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } } .testi-card { background: var(--bg-secondary); border-radius: 12px; padding: 2.5rem; position: relative; transition: all 0.5s var(--ease-out); border: 1px solid transparent; } .testi-card:hover { transform: translateY(-6px); border-color: var(--leaf-green); box-shadow: var(--shadow-md); } .testi-quote-mark { font-family: var(--serif); font-size: 5rem; font-style: italic; color: var(--leaf-green); line-height: 1; opacity: 0.3; margin-bottom: -1.5rem; } .testi-text { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--text-primary); margin-bottom: 2rem; font-style: italic; } .testi-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border-soft); } .testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--cap-blue) 0%, var(--leaf-green) 100%); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--serif); font-size: 1.4rem; font-style: italic; flex-shrink: 0; } .testi-name { font-family: var(--sans); font-weight: 600; color: var(--text-primary); font-size: 0.95rem; } .testi-role { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.15rem; } .testi-placeholder-badge { position: absolute; top: 1rem; right: 1rem; background: var(--accent-gold); color: var(--text-primary); padding: 0.25rem 0.6rem; border-radius: 100px; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; } .pesantren { background: var(--bg-secondary); overflow: hidden; } .pesantren-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } @media (max-width: 900px) { .pesantren-grid { grid-template-columns: 1fr; gap: 3rem; } } .pesantren-visual { position: relative; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-lg); } .pesantren-visual-img { position: absolute; inset: 0px; } .pesantren-visual-img img { width: 100%; height: 100%; object-fit: cover; } .pesantren-visual::before { content: ""; position: absolute; inset: 0px; background: linear-gradient(135deg, rgba(45, 74, 43, 0.8) 0%, rgba(92, 184, 92, 0.5) 100%); z-index: 2; } .pesantren-visual-content { position: absolute; inset: 0px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 3rem; color: rgb(250, 247, 240); z-index: 3; } .pesantren-visual-num { font-family: var(--serif); font-size: 6rem; font-style: italic; line-height: 1; margin-bottom: 0.5rem; } .pesantren-visual-unit { font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 2rem; opacity: 0.9; } .pesantren-visual-divider { width: 50px; height: 1px; background: rgba(255, 255, 255, 0.5); margin-bottom: 2rem; } .pesantren-visual-desc { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.4; max-width: 280px; } .spinning-text { position: absolute; inset: 0px; animation: 30s linear 0s infinite normal none running spin; pointer-events: none; z-index: 4; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .pesantren-text p { font-size: 1.05rem; line-height: 1.8; color: var(--text-primary); margin-bottom: 1.3rem; } .pesantren-list { list-style: none; margin-top: 2rem; display: grid; gap: 1rem; } .pesantren-list li { display: flex; align-items: start; gap: 1rem; padding: 1rem 0px; border-bottom: 1px solid var(--border-soft); font-size: 0.95rem; } .pesantren-list-num { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--leaf-green); line-height: 1; flex-shrink: 0; width: 40px; } .pesantren-list-text strong { display: block; font-weight: 600; color: var(--text-primary); margin-bottom: 0.2rem; } .pesantren-list-text span { color: var(--text-secondary); } .values { background: var(--bg-tertiary); position: relative; overflow: hidden; } .values-bg-quote { position: absolute; bottom: -8rem; right: -5rem; font-family: var(--serif); font-size: 30rem; font-style: italic; color: var(--leaf-green); opacity: 0.04; pointer-events: none; line-height: 0.8; user-select: none; } .values-content { position: relative; z-index: 2; } .values-header { max-width: 700px; margin-bottom: 5rem; } .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border-soft); border-left: 1px solid var(--border-soft); } @media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } } .value-card { padding: 3rem 2.5rem; border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); transition: all 0.5s var(--ease-out); position: relative; overflow: hidden; } .value-card:hover { background: var(--bg-inverse); color: var(--text-inverse); } .value-card:hover .value-num { color: var(--leaf-green); } .value-card:hover .value-icon { color: var(--leaf-green); } .value-card:hover .value-title { color: var(--text-inverse); } .value-card:hover .value-title em { color: var(--cap-blue); } .value-card:hover .value-desc { color: rgba(250, 247, 240, 0.8); } [data-theme="dark"] .value-card:hover .value-desc { color: rgba(26, 35, 50, 0.8); } .value-num { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--text-secondary); margin-bottom: 2rem; transition: color 0.5s; } .value-icon { margin-bottom: 2rem; color: var(--leaf-green); transition: color 0.5s; } .value-title { font-family: var(--serif); font-size: 2.2rem; line-height: 1; color: var(--text-primary); margin-bottom: 1rem; letter-spacing: -0.02em; transition: color 0.5s; } .value-title em { font-style: italic; color: var(--leaf-green); transition: color 0.5s; } .value-desc { font-size: 0.92rem; line-height: 1.7; color: var(--text-secondary); transition: color 0.5s; } .moments { background: var(--bg-primary); overflow: hidden; } .moments-marquee-wrap { margin-top: 4rem; overflow: hidden; } .moments-marquee { display: flex; gap: 1.5rem; animation: 45s linear 0s infinite normal none running marqueeImages; } @keyframes marqueeImages { 0% { transform: translateX(0px); } 100% { transform: translateX(-50%); } } .moment-card { flex: 0 0 320px; aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden; position: relative; box-shadow: var(--shadow-md); } .moment-card img, .moment-card svg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); display: block; } .moment-card:hover img, .moment-card:hover svg { transform: scale(1.08); } .moment-card::after { content: ""; position: absolute; inset: 0px; background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%); pointer-events: none; } .moment-content { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: rgb(250, 247, 240); z-index: 2; } .moment-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.3rem; } .moment-title { font-family: var(--serif); font-size: 1.3rem; line-height: 1.15; font-style: italic; } .location { background: var(--bg-secondary); overflow: hidden; } .location-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center; } @media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; gap: 3rem; } } .location-info p { font-size: 1.05rem; line-height: 1.7; color: var(--text-primary); margin-bottom: 1.5rem; } .location-details { margin-top: 2.5rem; display: grid; gap: 1.5rem; } .location-detail { display: flex; gap: 1.2rem; align-items: start; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-soft); } .location-detail:last-child { border-bottom-width: medium; border-bottom-style: none; border-bottom-color: currentcolor; } .location-detail-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--leaf-green); color: var(--bg-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .location-detail-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.3rem; font-weight: 500; } .location-detail-value { font-family: var(--serif); font-size: 1.2rem; color: var(--text-primary); font-style: italic; line-height: 1.3; } .location-map-wrap { position: relative; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-soft); } .location-map-wrap iframe { width: 100%; height: 100%; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; filter: contrast(1.05) saturate(0.9); } [data-theme="dark"] .location-map-wrap iframe { filter: invert(0.9) hue-rotate(180deg) contrast(0.9); } .map-pin-label { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--bg-primary); padding: 0.8rem 1.2rem; border-radius: 8px; box-shadow: var(--shadow-md); z-index: 2; display: flex; align-items: center; gap: 0.7rem; backdrop-filter: blur(8px); } .map-pin-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--leaf-green); box-shadow: rgba(92, 184, 92, 0.25) 0px 0px 0px 4px; animation: 2s ease-in-out 0s infinite normal none running pinPulse; } @keyframes pinPulse { 0%, 100% { box-shadow: rgba(92, 184, 92, 0.25) 0px 0px 0px 4px; } 50% { box-shadow: rgba(92, 184, 92, 0.05) 0px 0px 0px 8px; } } .map-pin-text { font-family: var(--serif); font-style: italic; color: var(--text-primary); font-size: 0.95rem; } .wa-order { background: var(--bg-inverse); color: var(--text-inverse); overflow: hidden; position: relative; } .wa-order::before { content: ""; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, var(--leaf-green) 0%, transparent 60%); opacity: 0.15; pointer-events: none; } .wa-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; position: relative; z-index: 2; } @media (max-width: 900px) { .wa-grid { grid-template-columns: 1fr; gap: 3rem; } } .wa-info h2 { color: var(--text-inverse); margin-bottom: 1.5rem; } .wa-info h2 em { font-style: italic; color: var(--leaf-green); } .wa-info p { font-size: 1.05rem; opacity: 0.8; line-height: 1.7; margin-bottom: 2rem; } .wa-features { list-style: none; margin-top: 2rem; } .wa-features li { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 0px; font-size: 0.92rem; opacity: 0.85; } .wa-features svg { color: var(--leaf-green); flex-shrink: 0; } .wa-form { background: rgba(250, 247, 240, 0.04); border: 1px solid rgba(250, 247, 240, 0.1); border-radius: 16px; padding: 2.5rem; backdrop-filter: blur(20px); } [data-theme="dark"] .wa-form { background: rgba(26, 35, 50, 0.4); border-color: rgba(26, 35, 50, 0.3); } .wa-form-title { font-family: var(--serif); font-size: 1.6rem; color: var(--text-inverse); margin-bottom: 0.4rem; font-style: italic; } .wa-form-sub { font-size: 0.85rem; opacity: 0.6; margin-bottom: 2rem; } .wa-field { margin-bottom: 1.5rem; } .wa-label { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--leaf-green); margin-bottom: 0.6rem; font-weight: 500; } .wa-input, .wa-select, .wa-textarea { width: 100%; background: transparent; border: 1px solid rgba(250, 247, 240, 0.15); border-radius: 8px; padding: 0.9rem 1rem; color: var(--text-inverse); font-family: var(--sans); font-size: 0.95rem; transition: border 0.3s, background 0.3s; } [data-theme="dark"] .wa-input, [data-theme="dark"] .wa-select, [data-theme="dark"] .wa-textarea { border-color: rgba(26, 35, 50, 0.2); } .wa-input:focus, .wa-select:focus, .wa-textarea:focus { outline: none; border-color: var(--leaf-green); background: rgba(250, 247, 240, 0.04); } .wa-input::placeholder, .wa-textarea::placeholder { color: rgba(250, 247, 240, 0.35); } [data-theme="dark"] .wa-input::placeholder, [data-theme="dark"] .wa-textarea::placeholder { color: rgba(26, 35, 50, 0.4); } .wa-select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235CB85C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; } .wa-select option { background: rgb(26, 35, 50); color: rgb(250, 247, 240); } .wa-textarea { resize: vertical; min-height: 90px; font-family: var(--sans); } .wa-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } @media (max-width: 500px) { .wa-row { grid-template-columns: 1fr; } } .wa-submit { width: 100%; background: var(--leaf-green); color: rgb(250, 247, 240); border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; padding: 1rem 1.5rem; border-radius: 100px; font-family: var(--sans); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 1rem; } .wa-submit:hover { background: var(--leaf-deep); transform: translateY(-2px); box-shadow: rgba(92, 184, 92, 0.5) 0px 10px 30px -10px; } .wa-submit svg { transition: transform 0.3s; } .wa-submit:hover svg { transform: translateX(4px); } .contact { background: var(--bg-inverse); color: var(--text-inverse); overflow: hidden; position: relative; border-top: 1px solid rgba(250, 247, 240, 0.08); } .contact-massive-text { position: absolute; top: 4rem; left: 50%; transform: translateX(-50%); font-family: var(--serif); font-size: clamp(8rem, 18vw, 18rem); font-style: italic; color: rgba(250, 247, 240, 0.04); line-height: 0.9; white-space: nowrap; pointer-events: none; user-select: none; } [data-theme="dark"] .contact-massive-text { color: rgba(26, 35, 50, 0.06); } .contact-content { position: relative; z-index: 2; max-width: 1200px; margin: 0px auto; } .contact-heading { font-family: var(--serif); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 0.95; margin-bottom: 3rem; letter-spacing: -0.03em; color: var(--text-inverse); } .contact-heading em { font-style: italic; color: var(--leaf-green); } .contact-sub { font-size: 1.1rem; max-width: 550px; opacity: 0.8; margin-bottom: 3rem; line-height: 1.7; } .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } } .contact-card { background: rgba(250, 247, 240, 0.04); border: 1px solid rgba(250, 247, 240, 0.1); padding: 2rem; border-radius: 12px; text-decoration: none; color: var(--text-inverse); transition: all 0.4s var(--ease-out); position: relative; overflow: hidden; backdrop-filter: blur(20px); display: flex; flex-direction: column; min-height: 220px; } [data-theme="dark"] .contact-card { background: rgba(26, 35, 50, 0.4); border-color: rgba(26, 35, 50, 0.3); } .contact-card:hover { border-color: var(--leaf-green); transform: translateY(-5px); } .contact-card-icon { width: 44px; height: 44px; background: var(--leaf-green); color: rgb(250, 247, 240); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; } .contact-card-name { font-family: var(--serif); font-size: 1.4rem; font-style: italic; margin-bottom: 0.5rem; } .contact-card-info { font-size: 0.9rem; opacity: 0.75; line-height: 1.5; margin-bottom: auto; } .contact-card-action { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--leaf-green); font-weight: 500; } .contact-card-action svg { transition: transform 0.3s; } .contact-card:hover .contact-card-action svg { transform: translate(4px, -4px); } footer { background: var(--bg-inverse); color: var(--text-inverse); padding: 4rem 3rem 2rem; border-top: 1px solid rgba(250, 247, 240, 0.08); } .footer-grid { max-width: 1600px; margin: 0px auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(250, 247, 240, 0.1); } [data-theme="dark"] .footer-grid { border-bottom-color: rgba(26, 35, 50, 0.15); } @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } footer { padding: 3rem 1.5rem 2rem; } } .footer-brand-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; font-family: var(--serif); font-size: 1.8rem; } .footer-brand-logo em { font-style: italic; color: var(--leaf-green); } .footer-brand p { opacity: 0.7; font-size: 0.92rem; max-width: 320px; line-height: 1.6; } .footer-col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--leaf-green); margin-bottom: 1.3rem; font-weight: 600; } .footer-col ul { list-style: none; } .footer-col li { margin-bottom: 0.7rem; font-size: 0.9rem; opacity: 0.75; } .footer-col a { color: var(--text-inverse); text-decoration: none; transition: opacity 0.3s, color 0.3s; } .footer-col a:hover { color: var(--leaf-green); opacity: 1; } .footer-bottom { max-width: 1600px; margin: 2rem auto 0px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; opacity: 0.6; } .reveal { opacity: 0; transform: translateY(50px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); } .reveal.in { opacity: 1; transform: translateY(0px); } .reveal-d1 { transition-delay: 0.1s; } .reveal-d2 { transition-delay: 0.2s; } .reveal-d3 { transition-delay: 0.3s; } .placeholder-svg { width: 100%; height: 100%; display: block; object-fit: cover; } .placeholder-tag { position: absolute; bottom: 0.8rem; left: 0.8rem; background: rgba(250, 247, 240, 0.95); padding: 0.35rem 0.7rem; border-radius: 100px; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgb(74, 85, 104); font-weight: 600; z-index: 3; backdrop-filter: blur(8px); } .nav-logo { text-decoration: none; transition: opacity .3s var(--ease-out); } .nav-logo:hover { opacity: 0.8; } .nav-logo-img { height: 40px; width: auto; display: block; transition: transform .4s var(--ease-out); } .nav-logo:hover .nav-logo-img { transform: scale(1.06) rotate(-3deg); } .footer-logo-img { width: 185px; max-width: 60%; height: auto; display: block; } .hero-bottle-photo { position: relative; z-index: 2; width: 94%; height: auto; max-height: 100%; object-fit: contain; filter: drop-shadow(rgba(26, 35, 50, 0.16) 0px 24px 34px); transition: transform .6s var(--ease-out); } [data-theme="dark"] .hero-bottle-photo { filter: drop-shadow(rgba(0, 0, 0, 0.55) 0px 24px 40px); } .hero-photo-wrap:hover .hero-bottle-photo { transform: scale(1.04) rotate(-1.5deg); } @media (max-width: 480px) { .nav-logo span { display: none; } .nav-logo-img { height: 38px; } } .product-photo-wrap img.product-cutout { object-fit: contain; padding: 13% 15% 7%; filter: drop-shadow(rgba(26, 35, 50, 0.3) 0px 16px 24px); background: transparent; } .coming-soon { position: absolute; inset: 0px; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; text-align: center; padding: 1.5rem; } .coming-soon .cs-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(250, 247, 240, 0.85); font-weight: 600; } .coming-soon .cs-text { font-family: var(--serif); font-style: italic; font-size: 2.6rem; line-height: 1; color: rgb(250, 247, 240); text-shadow: rgba(0, 0, 0, 0.25) 0px 4px 20px; } .coming-soon .cs-sub { font-size: 0.8rem; color: rgba(250, 247, 240, 0.7); margin-top: 0.2rem; } .ico-tokopedia svg { color: rgb(66, 181, 73); } .cert-hero { padding: 11rem 3rem 3rem; max-width: 1600px; margin: 0 auto; } @media (max-width: 768px){ .cert-hero { padding: 8rem 1.5rem 2rem; } } .cert-hero p { font-size: 1.05rem; color: var(--text-secondary); max-width: 620px; margin-top: 1.2rem; line-height: 1.7; } .cert-badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; } .cert-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 100px; background: var(--bg-secondary); border: 1px solid var(--border-soft); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em; color: var(--text-primary); } .cert-badge .dotg { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf-green); } .cert-section { background: var(--bg-secondary); } .cert-wrap { max-width: 1600px; margin: 0 auto; padding: 4rem 3rem 7rem; display: flex; flex-direction: column; gap: 2.2rem; } @media (max-width: 768px){ .cert-wrap { padding: 2rem 1.5rem 5rem; gap: 1.6rem; } } .cert-card { background: var(--bg-primary); border: 1px solid var(--border-soft); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1fr 1.05fr; } @media (max-width: 900px){ .cert-card { grid-template-columns: 1fr; } } .cert-card-info { padding: 2.8rem; display: flex; flex-direction: column; } @media (max-width: 768px){ .cert-card-info { padding: 1.8rem; } } .cert-num { font-family: var(--serif); font-size: 0.9rem; color: var(--text-tertiary); letter-spacing: 0.15em; margin-bottom: 1rem; } .cert-tag { display: inline-flex; align-self: flex-start; align-items: center; gap: 0.45rem; padding: 0.35rem 0.85rem; border-radius: 100px; background: var(--leaf-green); color: var(--bg-primary); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; } .cert-tag.blue { background: var(--cap-blue-deep); } .cert-tag.gold { background: var(--accent-gold); color: #1A2332; } .cert-card-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.02; font-weight: 400; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 0.5rem; } .cert-card-title em { font-style: italic; color: var(--leaf-green); } .cert-issuer { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.6rem; } .cert-card-desc { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.6rem; } .cert-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.1rem 1.5rem; border-top: 1px solid var(--border-soft); padding-top: 1.4rem; margin-top: auto; } .cert-meta-row { padding: 0.55rem 0; border-bottom: 1px solid var(--border-soft); } .cert-meta-row.full { grid-column: 1 / -1; } .cert-meta-label { display:block; font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-tertiary); font-weight: 500; margin-bottom: 0.25rem; } .cert-meta-value { font-size: 0.92rem; color: var(--text-primary); font-weight: 500; } .cert-prodlist { display:flex; flex-wrap:wrap; gap:0.4rem; margin-top:0.4rem; } .cert-prodlist span { font-size:0.72rem; padding:0.28rem 0.6rem; border-radius:7px; background:var(--bg-secondary); border:1px solid var(--border-soft); color:var(--text-secondary); } .cert-gallery { background: var(--bg-tertiary); padding: 2.2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; } [data-theme="dark"] .cert-gallery { background: var(--bg-secondary); } .cert-doc-main { width: 100%; max-width: 460px; border-radius: 10px; box-shadow: var(--shadow-lg); cursor: zoom-in; display: block; border: 1px solid var(--border-soft); transition: transform .4s var(--ease-out); } .cert-doc-main:hover { transform: translateY(-4px); } .cert-thumbs { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; } .cert-thumb { width: 78px; height: 110px; object-fit: cover; object-position: top; border-radius: 6px; cursor: zoom-in; border: 1px solid var(--border-soft); box-shadow: var(--shadow-md); transition: transform .3s var(--ease-out), border-color .3s; } .cert-thumb:hover { transform: translateY(-3px); border-color: var(--leaf-green); } .cert-pagehint { font-size: 0.72rem; color: var(--text-secondary); letter-spacing: 0.04em; } .lb { position: fixed; inset: 0; background: rgba(10,14,20,0.92); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 2rem; backdrop-filter: blur(6px); } .lb.open { display: flex; } .lb img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 40px 100px rgba(0,0,0,.6); } .lb-close { position: absolute; top: 1.4rem; right: 1.6rem; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 1.5rem; cursor: pointer; display:flex; align-items:center; justify-content:center; transition:.25s; } .lb-close:hover { background: var(--leaf-green); } .lb-nav { position:absolute; top:50%; transform:translateY(-50%); width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25); color:#fff; font-size:1.6rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:.25s; } .lb-nav:hover { background: var(--leaf-green); } .lb-prev { left: 1.6rem; } .lb-next { right: 1.6rem; } .cert-disclaimer { max-width:1600px; margin:0 auto; padding:0 3rem 5rem; } @media(max-width:768px){ .cert-disclaimer{ padding:0 1.5rem 4rem; } } .cert-disclaimer-inner { background: var(--bg-primary); border:1px solid var(--border-soft); border-radius:18px; padding:1.8rem 2rem; display:flex; gap:1rem; align-items:flex-start; } .cert-disclaimer-inner svg { flex-shrink:0; color: var(--leaf-green); margin-top:2px; } .cert-disclaimer-inner p { font-size:0.88rem; color: var(--text-secondary); line-height:1.7; } .location-maps-btn { display:inline-flex; align-items:center; gap:0.6rem; margin-top:1.8rem; padding:0.85rem 1.6rem; border-radius:100px; background:var(--leaf-green); color:var(--bg-primary); font-size:0.9rem; font-weight:600; letter-spacing:0.01em; text-decoration:none; transition:transform .3s var(--ease-out), box-shadow .3s, background .3s; box-shadow:var(--shadow-md); } .location-maps-btn:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); background:var(--cap-blue-deep); } .location-maps-btn svg { flex-shrink:0; } .location-map-col { display:flex; flex-direction:column; align-items:flex-end; } .location-map-col .location-map-wrap { width:100%; } .location-maps-btn { margin-top:1.4rem; } .hero h1 .reveal-word .hero-italic { font-style: italic; color: var(--leaf-green); } .x-scroll-progress{position:fixed;top:0;left:0;right:0;height:3px;transform-origin:0 50%;transform:scaleX(var(--p,0));background:linear-gradient(90deg,var(--leaf-green),#b5e48c 45%,var(--cap-blue));box-shadow:0 0 14px rgba(92,184,92,.55);z-index:9999;pointer-events:none;will-change:transform} .x-cursor-glow{position:fixed;left:0;top:0;width:560px;height:560px;border-radius:50%;pointer-events:none;background:radial-gradient(circle,rgba(92,184,92,.22) 0%,rgba(92,184,92,.08) 38%,transparent 70%);filter:blur(24px);z-index:9997;mix-blend-mode:multiply;transform:translate3d(calc(var(--mx,50vw) - 280px),calc(var(--my,50vh) - 280px),0);transition:transform .38s cubic-bezier(.22,1,.36,1);will-change:transform} [data-theme="dark"] .x-cursor-glow{background:radial-gradient(circle,rgba(92,184,92,.28) 0%,rgba(92,184,92,.10) 38%,transparent 70%);mix-blend-mode:screen} .x-orbs{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden} .x-orb{position:absolute;border-radius:50%;filter:blur(70px);will-change:transform;animation:xOrbFloat 26s ease-in-out infinite} .x-orb-1{top:-6%;left:-10%;width:520px;height:520px;background:radial-gradient(circle,var(--leaf-green),transparent 65%);opacity:.34;animation-duration:28s} .x-orb-2{top:38%;right:-12%;width:560px;height:560px;background:radial-gradient(circle,var(--cap-blue),transparent 65%);opacity:.22;animation-delay:-7s;animation-duration:32s} .x-orb-3{bottom:-12%;left:18%;width:520px;height:520px;background:radial-gradient(circle,#ffd166,transparent 65%);opacity:.16;animation-delay:-14s;animation-duration:38s} .x-orb-4{top:62%;left:34%;width:420px;height:420px;background:radial-gradient(circle,#b5e48c,transparent 65%);opacity:.22;animation-delay:-10s;animation-duration:30s} [data-theme="dark"] .x-orb-1{opacity:.22} [data-theme="dark"] .x-orb-2{opacity:.16} [data-theme="dark"] .x-orb-3{opacity:.10} [data-theme="dark"] .x-orb-4{opacity:.14} @keyframes xOrbFloat{ 0%,100%{transform:translate3d(0,0,0) scale(1)} 25%{transform:translate3d(80px,-60px,0) scale(1.06)} 50%{transform:translate3d(-40px,90px,0) scale(.94)} 75%{transform:translate3d(60px,40px,0) scale(1.08)} } .product-card,.testi-card,.value-card,.moment-card,.contact-card{ transform-style:preserve-3d;will-change:transform; transition:transform .65s var(--ease-out), box-shadow .65s var(--ease-out), border-color .35s, background .35s; } .product-card.x-tilt,.testi-card.x-tilt,.value-card.x-tilt,.moment-card.x-tilt,.contact-card.x-tilt{ transform:perspective(1100px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)) translateZ(18px) scale(1.012); transition:transform .14s linear, box-shadow .35s var(--ease-out); box-shadow:0 32px 60px -22px rgba(26,35,50,.30), 0 14px 30px -12px rgba(92,184,92,.22); } [data-theme="dark"] .product-card.x-tilt, [data-theme="dark"] .testi-card.x-tilt, [data-theme="dark"] .value-card.x-tilt, [data-theme="dark"] .moment-card.x-tilt, [data-theme="dark"] .contact-card.x-tilt{ box-shadow:0 32px 60px -22px rgba(0,0,0,.55), 0 14px 30px -12px rgba(92,184,92,.22); } .product-card::after,.testi-card::after,.value-card::after,.contact-card::after{ content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none; background:linear-gradient(115deg,transparent 35%,rgba(255,255,255,.32) 50%,transparent 65%); transform:translateX(-110%);opacity:0; transition:opacity .35s, transform 1s var(--ease-out); mix-blend-mode:overlay;z-index:3; } .product-card:hover::after,.testi-card:hover::after,.value-card:hover::after,.contact-card:hover::after{ transform:translateX(110%);opacity:.9; } [data-theme="dark"] .product-card::after, [data-theme="dark"] .testi-card::after, [data-theme="dark"] .value-card::after, [data-theme="dark"] .contact-card::after{ background:linear-gradient(115deg,transparent 35%,rgba(255,255,255,.10) 50%,transparent 65%); } .testi-card{overflow:hidden} .product-card.featured{box-shadow:0 0 0 1px rgba(92,184,92,.35), 0 30px 80px -28px rgba(92,184,92,.55), inset 0 1px 0 rgba(255,255,255,.18)} .nav-cta,.location-maps-btn,.contact-card-action{ will-change:transform; transition:transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s var(--ease-out), background .35s, color .3s; } .nav-cta:hover,.location-maps-btn:hover,.contact-card-action:hover{ box-shadow:0 14px 32px -10px rgba(92,184,92,.50); } nav{backdrop-filter:blur(28px) saturate(220%);-webkit-backdrop-filter:blur(28px) saturate(220%);box-shadow:0 8px 32px -14px rgba(26,35,50,.10)} [data-theme="dark"] nav{box-shadow:0 8px 32px -14px rgba(0,0,0,.45)} .hero-photo-wrap{perspective:1400px;perspective-origin:50% 40%} .hero-bottle-svg{transform-style:preserve-3d;transition:transform .8s cubic-bezier(.22,1,.36,1)} .hero-photo-wrap.x-3d .hero-bottle-svg{transform:rotateX(var(--brx,0deg)) rotateY(var(--bry,0deg)) translateZ(0)} .hero-photo-wrap:hover .hero-bottle-svg{transform:rotateX(var(--brx,0deg)) rotateY(var(--bry,0deg)) scale(1.04)} .x-reveal{opacity:0;transform:translateY(46px);transition:opacity .9s var(--ease-out), transform .9s var(--ease-out)} .x-reveal.x-in{opacity:1;transform:translateY(0)} .hero-bg-type{will-change:transform;transition:transform .15s linear} section{isolation:isolate} a:focus-visible,button:focus-visible{outline:2px solid var(--leaf-green);outline-offset:3px;border-radius:8px} @media (prefers-reduced-motion: reduce){ .x-orb,.x-cursor-glow{animation:none;transition:none} .product-card.x-tilt,.testi-card.x-tilt,.value-card.x-tilt,.moment-card.x-tilt,.contact-card.x-tilt{transform:none} } .exp-serif{ font-family:var(--serif); } .exp-sans{ font-family:var(--sans); } .anatomy-wrap{ padding:0.5rem 1.5rem 5.5rem; max-width:1200px; margin:0 auto; position:relative; z-index:2; } .anatomy-head{ text-align:center; margin-bottom:2.6rem; } .anatomy-head .section-label{ justify-content:center; } .anatomy-head .section-headline{ max-width:none; } .anatomy-sub{ margin:1rem auto 0; font-size:1.02rem; line-height:1.6; color:rgba(255,255,255,.62); max-width:540px; } .exp-stage{ position:relative; max-width:1040px; margin:0 auto; border-radius:28px; overflow:hidden; cursor:pointer; background:radial-gradient(120% 90% at 50% 12%, #fbf8f1 0%, #f1ead9 60%, #e7dcc8 100%); border:1px solid rgba(0,0,0,.06); box-shadow:0 60px 140px -55px rgba(0,0,0,.75), 0 20px 50px -30px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.65); transition:box-shadow .6s var(--ease-out), transform .6s var(--ease-out); } .exp-stage:hover{ box-shadow:0 70px 160px -50px rgba(0,0,0,.8), 0 24px 60px -28px rgba(92,184,92,.25), inset 0 1px 0 rgba(255,255,255,.7); } .exp-svg{ display:block; width:100%; height:auto; } .exp-cap, .exp-label{ transform-box:view-box; transition:transform .9s cubic-bezier(.22,1,.36,1); } .exp-cap{ transform-origin:688px 237px; } .exp-label{ transform-origin:688px 476px; } .exp-stage.is-open .exp-cap{ transform:translate(0px,-155px) rotate(-118deg); } .exp-stage.is-open .exp-label{ transform:translate(235px,-8px) rotate(13deg); } .exp-anno{ opacity:0; transform:translateY(10px); transition:opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1); } .exp-stage.is-open .exp-anno{ opacity:1; transform:translateY(0); } .exp-stage.is-open .exp-d1{ transition-delay:.06s; } .exp-stage.is-open .exp-d2{ transition-delay:.13s; } .exp-stage.is-open .exp-d3{ transition-delay:.20s; } .exp-stage.is-open .exp-d4{ transition-delay:.27s; } .exp-assembly{ animation:expFloat 7s ease-in-out infinite; } @keyframes expFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-7px); } } .exp-hint{ position:absolute; left:50%; bottom:18px; transform:translateX(-50%); display:flex; gap:.5rem; align-items:center; font-family:var(--sans); font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; color:#7c8a83; background:rgba(255,255,255,.72); backdrop-filter:blur(8px); padding:.55rem 1.1rem; border-radius:100px; border:1px solid rgba(0,0,0,.06); transition:opacity .4s; } .exp-hint span{ color:var(--leaf-green); font-weight:700; } .exp-hint .exp-hint-dot{ width:7px; height:7px; border-radius:50%; background:var(--leaf-green); box-shadow:0 0 0 3px rgba(92,184,92,.25); animation:expPulse 2s ease-in-out infinite; } @keyframes expPulse{ 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.5); opacity:.5; } } .exp-stage.is-open .exp-hint{ opacity:0; } @media (prefers-reduced-motion: reduce){ .exp-assembly{ animation:none; } .exp-cap,.exp-label{ transition-duration:.01s; } } .hero-pour{ position:relative; z-index:2; width:100%; max-width:560px; aspect-ratio:1/1; border-radius:28px; overflow:hidden; background:#eceae3; box-shadow:0 55px 120px -48px rgba(26,35,50,.5), 0 18px 44px -26px rgba(26,35,50,.32), inset 0 1px 0 rgba(255,255,255,.65); border:1px solid rgba(0,0,0,.06); } [data-theme="dark"] .hero-pour{ box-shadow:0 55px 120px -48px rgba(0,0,0,.78), inset 0 1px 0 rgba(255,255,255,.08); border-color:rgba(255,255,255,.08); } .hero-pour video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .6s ease; } .hero-pour video.show{ opacity:1; } .hero-pour::after{ content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none; box-shadow:inset 0 0 80px rgba(26,35,50,.08); } .hero-pour-wm{ position:absolute; left:0; right:0; bottom:0; height:11%; z-index:3; pointer-events:none; background:linear-gradient(to top, #e9e6df 8%, rgba(233,230,223,0)); }.map-facade{position:absolute;inset:0;width:100%;height:100%;padding:0;margin:0;border:0;cursor:pointer;background:#dfe7e9;display:block}.map-facade img{width:100%;height:100%;object-fit:cover;display:block;filter:contrast(1.05) saturate(.9)}[data-theme="dark"] .map-facade img{filter:invert(.9) hue-rotate(180deg) contrast(.9)}.map-facade-cta{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--bg-primary,#fff);color:var(--text-primary,#1a2332);padding:.7rem 1.2rem;border-radius:999px;box-shadow:var(--shadow-md,0 6px 18px rgba(0,0,0,.18));font-family:var(--sans,sans-serif);font-size:.9rem;font-weight:600;display:inline-flex;align-items:center;gap:.5rem;z-index:3;transition:transform .3s,box-shadow .3s;white-space:nowrap}.map-facade:hover .map-facade-cta{transform:translate(-50%,-50%) scale(1.05)}