@font-face {
    font-family: 'UniversLight';
    src: url('fonts/UniversLight.ttf') format('truetype');
}

@font-face {
    font-family: 'AlternateGot3D';
    src: url('fonts/AlternateGotNo3D.otf') format('truetype');
}

@font-face {
    font-family: 'PPEditorialItalic';
    src: url('fonts/PPEditorialNew-Italic.ttf') format('truetype');
}

:root {
    --ivory: #F5F5F5;
    --forest-green: #000;
    --dark-forest: #000;
    --slate-grey: #4A4A4A;
    --soft-gold: #4A4A4A;
    --muted-brown: #333;
    --light-grey: #E0E0E0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'UniversLight', sans-serif;
    font-weight: 100;
    background-color: var(--ivory);
    color: var(--slate-grey);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'AlternateGot3D', sans-serif;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-right:-0.4em;
}

h1 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--soft-gold);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--muted-brown);
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--ivory);
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

a {
    color: var(--soft-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--ivory);
}

ul {
    list-style: none;
}

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

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
}

.feature-quote {
    font-family: 'PPEditorialItalic', serif;
    font-size: 2.2vw;
    font-weight: 100;
    letter-spacing: 0.12em;
    line-height: 1.5em;
    max-width: 500px;
    margin: 0;
}

.quote-author {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    color: var(--soft-gold);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.scrolled {
    background-color: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header .logo {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    overflow: visible;
    vertical-align: middle;
}

header .logo img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200px;
    height: auto;
    max-height: none;
    transform: translateY(-50%);
    transition: opacity 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header .logo .logo-white {
    opacity: 1;
}

header .logo .logo-dark {
    opacity: 0;
}

header.scrolled .logo .logo-white {
    opacity: 0;
}

header.scrolled .logo .logo-dark {
    opacity: 1;
}

nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    padding: 5rem 2rem 2rem;
    transition: left 0.4s ease;
    z-index: 1000;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

nav.active {
    left: 0;
}

nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-grey);
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--forest-green);
    transition: width 0.3s ease;
}

nav ul li a:not(.cta-button):hover::after {
    width: 100%;
}

nav ul li a:not(.cta-button):hover {
    color: var(--forest-green);
}

.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.4s ease;
    border-radius: 0;
}

header.scrolled .mobile-nav-toggle span {
    background-color: var(--slate-grey);
}

.mobile-nav-toggle.active span {
    background-color: var(--slate-grey);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 4px);
}

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

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -4px);
}

.cta-button {
    background-color: transparent;
    color: white !important;
    padding: calc(0.6rem - 1px) calc(1.2rem - 1px);
    border-radius: 0;
    font-weight: 500;
    border: 1px solid white;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-cta {
    display: block;
    position: relative;
    z-index: 1001;
    font-size: 0.75rem;
    padding: calc(0.4rem - 1px) calc(1.5rem - 1px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

nav .cta-button {
    color: var(--slate-grey) !important;
    border-color: var(--slate-grey);
}

nav ul li.mobile-only {
    margin-top: 1.5rem;
}

nav ul li a.cta-button {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-button:hover {
    box-shadow: inset 0 0 0 1px currentColor;
}

header.scrolled .cta-button {
    color: var(--slate-grey) !important;
    border-color: var(--slate-grey);
}

header.scrolled .cta-button:hover {
    box-shadow: inset 0 0 0 1px currentColor;
}

#hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 600px;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
}

.hero-content.left-aligned {
    width: 50%;
    text-align: left;
    margin: 0;
    margin-left: 10%;
}

.tagline {
    font-size: 1rem;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dark-section {
    background-color: var(--ivory);
    color: var(--slate-grey);
    text-align: center;
    position: relative;
}

.dark-section:nth-child(odd) {
    background-color: var(--ivory);
}

.feature-section {
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.feature-image {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--ivory);
}

.feature-image img {
    width: 100%;
    height: 105%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

.feature-content-container {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.feature-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    z-index: 2;
}

.feature-section .section-title {
    color: var(--muted-brown);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.feature-section .section-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--soft-gold);
}

.feature-section.reversed {
    flex-direction: row-reverse;
}

.parallax {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: background-position;
    overflow: hidden;
}

.email-signup {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  width: 100%;
}

.benefits-container {
    text-align: center;
}

.benefits {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
    display: inline-block;
}

.benefits li {
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.benefits li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--forest-green);
    border-radius: 50%;
}

#explore .section-title {
    color: var(--muted-brown);
    position: relative;
    display: inline-block;
    margin-bottom: 4rem;
}

#explore .section-title::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: calc(50% - 0.2em);
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--soft-gold);
}

#philosophy {
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

#philosophy .content {
    text-align: left;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    align-items: center;
}

#philosophy .philosophy-content {
    width: 50%;
}

.manifesto h2 {
    font-size: 3rem;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: white;
}

.manifesto {
    margin-bottom: 2rem;
}

.manifesto-word {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.manifesto-word.visible {
    opacity: 1;
    transform: translateY(0);
}

.manifesto-1.visible {
    transition-delay: 0.2s;
}

.manifesto-2.visible {
    transition-delay: 0.9s;
}

.manifesto-3.visible {
    transition-delay: 1.6s;
}

#journey {
    height: 100vh;
    position: relative;
    color: white;
}

#journey .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem;
    max-width: 1000px;
}

#journey .section-title {
    color: white;
    position: relative;
    display: inline-block;
}

#journey .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--soft-gold);
}

#journey p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#collection {
    background-color: var(--ivory);
}

#collection .content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#collection .section-title {
    color: var(--muted-brown);
    position: relative;
    display: inline-block;
}

#collection .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: calc(50% - 0.2em);
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--soft-gold);
}

#collection p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-lineup {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.product {
    text-align: center;
}

.product img {
    width: 100%;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease-out;
}

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

.product-name {
    font-family: 'AlternateGot3D', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    margin-right: -0.4em;
    color: var(--muted-brown);
    text-transform: uppercase;
    line-height: 1.2em;
}

.ref-number {
    display: block;
    margin-bottom: 0.1rem;
    margin-right: 0.4em;
    color: var(--slate-grey);
    font-size: 0.8rem;
    font-family: 'UniversLight', sans-serif;
    letter-spacing: 0.04em;
    text-transform: none;
}

.product-showcase {
    display: flex;
    align-items: center;
    background-color: var(--ivory);
    position: relative;
}

.product-showcase .image-container {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.product-showcase .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-showcase .text-container {
    width: 50%;
    padding: 5rem;
    display: flex;
    justify-content: center;
}

.product-showcase.reversed {
    flex-direction: row-reverse;
}

#watch-wrist .image-container {
    margin-left: 2rem;
}

#detail {
    padding: 3rem 0;
}

#detail .image-container {
    margin-right: 2rem;
}

#specifications {
    background-color: var(--ivory);
}

#specifications .content {
    max-width: 1200px;
}

#specifications .section-title {
    color: var(--muted-brown);
    position: relative;
    display: inline-block;
}

#specifications .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: calc(50% - 0.2em);
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--soft-gold);
}

#specifications p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.specs-container {
    display: flex;
    margin-top: 4rem;
    align-items: flex-start;
}

.blueprint {
    flex: 1;
    padding-right: 3rem;
}

.blueprint img {
    display: block;
    width: 100%;
}

.specs-table {
    flex: 1;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'UniversLight', sans-serif;
    font-size: 0.9rem;
}

.specs-table table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-grey);
}

.specs-table tr {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.specs-table tr.visible {
    opacity: 1;
    transform: translateY(0);
}

.specs-table table td:first-child {
    font-family: 'AlternateGot3D', sans-serif;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted-brown);
    width: 40%;
    font-size: 0.95rem;
}

/* Gallery styling */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--ivory);
    color: var(--dark-forest);
}

.gallery-section h2 {
    display: none; /* Remove titles as requested */
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 85%;
    margin: 0 auto;
}

.gallery-item {
    flex: 1;
    max-width: 22%;
    overflow: hidden;
    border-radius: 0px; /* Removed rounded corners */
    position: relative;
}

.gallery-image {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/5; /* Maintain aspect ratio */
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.polaroid img {
    background: var(--light-grey);
    padding: 5px;
}

.gallery-label {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--soft-gold);
    font-family: 'PPEditorialItalic', serif;
    letter-spacing: 0.05em;
}

#quote {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

#quote .feature-quote {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    line-height: 1.3;
    max-width: 900px;
}

#quote .quote-author {
    color: var(--ivory);
}

#quote .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    margin-right: 0.3rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#quote .word.visible {
    opacity: 1;
    transform: translateY(0);
}

#join {
    background-color: var(--ivory);
}

#join .content {
    max-width: 900px;
}

#join .section-title {
    color: var(--muted-brown);
    position: relative;
    display: inline-block;
}

#join .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: calc(50% - 0.2em);
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--soft-gold);
}

#join p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kindred-spirits-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 90%;
    margin: 2rem auto 0;
    flex-wrap: wrap;
}

.kindred-spirit {
    flex: 1;
    max-width: calc(25% - 30px);
    text-align: center;
}

.kindred-spirit img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1rem;
}

#kindred-spirits .section-title {
    color: var(--muted-brown);
    position: relative;
    display: inline-block;
}

#kindred-spirits .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--soft-gold);
}

.kindred-spirit h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.kindred-spirit p {
    font-size: 0.9rem;
    line-height: 1.5;
}

#timeline {
    background-color: var(--ivory);
}

#timeline p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#timeline .section-title {
    color: var(--muted-brown);
    position: relative;
    display: inline-block;
}

#timeline .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: calc(50% - 0.2em);
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--soft-gold);
}

.timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background-color: var(--soft-gold);
    transform-origin: top;
    transform: translateX(-50%) scaleY(0);
    transition: transform 1.5s ease;
}

.timeline.animate-line::before {
    transform: translateX(-50%) scaleY(1);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-date {
    width: 40%;
    text-align: right;
    padding-right: 2rem;
    font-family: 'AlternateGot3D', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--forest-green);
    margin-right:-0.4em;
}

.timeline-content {
    width: 40%;
    text-align: left;
    padding-left: 2rem;
    font-weight: 300;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-radius: 0;
    background-color: var(--soft-gold);
}

.stamp-section {
    background-color: var(--soft-gold);
    text-align: center;
    padding: 2rem 0;
    background-image: url('images/prefooter-background.png');
    background-size: cover;
    background-position: center;    
}

.stamp-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-stamp {
    max-width: 100px;
    height: auto;
}

footer {
    background-color: var(--dark-forest);
    color: white;
    padding: 5rem 2rem 2rem;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
    vertical-align: middle;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--ivory);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--soft-gold);
    color: var(--dark-forest);
}

.footer-column a {
    color: var(--ivory);
}

.footer-column a:hover {
    color: white;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

.copyright a {
    color: var(--ivory);
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: white;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-only {
    display: none;
}














/* ==============================================
                 RESPONSIVE DESIGN
   ============================================== */

/* Large Desktop (default styles apply) */

/* Medium Desktop */
@media (max-width: 1200px) {
    /* Philosophy section text expansion */
    #philosophy .philosophy-content {
        width: 60%;
    }
    
    /* Adjust feature content padding */
    .feature-content {
        padding: 2.5rem;
    }
    
    /* Adjust content max-width */
    .content {
        max-width: 1000px;
    }
}

/* Tablet (768px - 1199px) */
@media (max-width: 992px) {
    /* Philosophy section continues to expand */
    #philosophy .philosophy-content {
        width: 75%;
    }
    
    /* Reduce heading sizes slightly */
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .manifesto h2 {
        font-size: 2.5rem;
    }
    
    /* Gallery adjustments - prepare for mobile carousel */
    .gallery-container {
        gap: 20px;
    }
    
    .gallery-item {
        max-width: calc(25% - 20px);
    }
    
    .gallery-label {
        font-size: 0.9rem;
    }
    
    /* Collection - ensure 2x2 grid at tablet size */
    .product-lineup {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    /* Navigation already handled */
    
    /* Hero section - switch to mobile image and layout */
    #hero {
        background-image: url('images/hero-background-mobile-n85.jpg');
        background-position: center top;
        display: flex;
        align-items: flex-end;
        padding-bottom: 3rem;
    }
    
    .hero-content.left-aligned {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    
    /* Philosophy section - full width on mobile */
    #philosophy .content {
        justify-content: center;
        padding: 3rem 1.5rem;
    }
    
    #philosophy .philosophy-content {
        width: 100%;
        text-align: center;
    }
    
    .manifesto {
        margin-bottom: 1.5rem;
    }
    
    .manifesto h2 {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    /* Feature sections - elegant stacking */
    .feature-section,
    .feature-section.reversed {
        flex-direction: column;
        height: auto;
    }
    
    .feature-image {
        width: 100%;
        height: 60vh;
        min-height: 400px;
    }
    
    .feature-content {
        width: 100%;
        padding: 3rem 2rem;
    }
    
    /* Gallery on mobile - completely simplified approach */
    .gallery-section {
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    .gallery-section .container {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .gallery-container {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        padding: 20px 0;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        margin: 0;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0;
        max-width: none;
    }
    
    .gallery-container::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-item {
        flex: 0 0 80%;
        max-width: 80%;
        min-width: 80%;
        margin: 0 10px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        box-shadow: none;
    }
    
    .gallery-item:first-child {
        margin-left: 10%;
    }
    
    .gallery-item:last-child {
        margin-right: 10%;
    }
        
    .gallery-item img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .gallery-item:hover img {
        transform: none; /* Disable hover effect on mobile */
    }
    

    
    /* Collection - 2x2 grid */
    .product-lineup {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 600px;
        margin: 4rem auto;
    }
    
    .product {
        min-width: auto;
        flex: none;
    }
    
    .product img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
    
    /* Quote sections - stack elegantly */
    .product-showcase,
    .product-showcase.reversed {
        flex-direction: column;
    }
    
    .product-showcase .image-container,
    .product-showcase .text-container {
        width: 100%;
    }
    
    .product-showcase .image-container {
        height: 70vh;
        min-height: 400px;
    }
    
    .product-showcase .text-container {
        padding: 3rem 2rem;
    }
    
    #watch-wrist .image-container,
    #detail .image-container {
        margin: 0;
    }
    
    .feature-quote {
        font-size: 1.8rem;
    }
    
    /* Specifications - blueprint on top */
    .specs-container {
        flex-direction: column;
    }
    
    .blueprint {
        padding: 0;
        margin-bottom: 3rem;
        width: 100%;
    }
    
    .specs-table {
        width: 100%;
    }
    
    .specs-table table {
        font-size: 0.85rem;
    }
    
    .specs-table table td {
        padding: 0.75rem;
    }
    
    /* Timeline adjustments */
    .timeline-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .timeline-date,
    .timeline-content {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .timeline-date {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    /* Quote section adjustments */
    #quote .feature-quote {
        font-size: 1.5rem;
    }
    
    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* General content padding reduction */
    .content {
        padding: 3rem 1.5rem;
    }
    
    /* Journey section text */
    #journey .content {
        padding: 3rem 1.5rem;
    }
    
    /* Mobile navigation visibility */
    .mobile-only {
        display: block;
    }
    
    .desktop-cta {
        display: none;
    }
    
    /* Email signup responsive */
    .email-signup {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-signup input,
    .email-signup button {
        width: 100%;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    /* Further size reductions */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .manifesto h2 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    /* Collection - single column */
    .product-lineup {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product img {
        max-width: 240px;
        margin-bottom: 0.5rem;
    }
    
    /* Feature sections image height */
    .feature-image {
        height: 50vh;
        min-height: 350px;
    }
    
    /* Quote text size */
    .feature-quote {
        font-size: 1.5rem;
    }
    
    #quote .feature-quote {
        font-size: 1.3rem;
    }
    
    /* Showcase images */
    .product-showcase .image-container {
        height: 60vh;
        min-height: 350px;
    }
    
    /* Content padding further reduction */
    .content {
        padding: 2.5rem 1rem;
    }
    
    .feature-content {
        padding: 2.5rem 1.5rem;
    }
    
    /* Benefits list */
    .benefits {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    #hero {
        height: 100vh;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    /* Minimal adjustments for very small screens */
    h1 {
        font-size: 1.75rem;
    }
    
    .product img {
        max-width: 220px;
    }
    
    .specs-table table {
        font-size: 0.8rem;
    }
}


/* CRO STYLES */

.hide {
  display:none;
}

.email-signup-hero {
  justify-content: left;
  margin:0;
  padding:0;
}

.benefits-container-hero {
    text-align: left;
}

.benefits-hero li {
    color: white;
    margin-bottom: 0.1rem;
    padding-left: 1rem;
}

.benefits li:before {
    border: 1px solid white;
}

@media (max-width: 768px) {
    .benefits-container-hero {
        text-align: center;
    }
    .benefits-hero {
        margin: 0.5rem auto 0;
    }
    .benefits-hero li {
        font-size: 0.8rem;
    }
}