@import url("https://use.typekit.net/hbr6gaa.css");

/* Basic reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

html {
	scroll-behavior: smooth;
}

body,
body.light {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background-color: #000000;
}

body.light {
    color: #000000;
    background-color: #ffffff;
}

a {
	color: #000000;
	font-weight: 600;
}

a:hover {
	color: rgba(0,0,0,0.6);
}

/* Header */

.site-header,
.site-header.light {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000; /* above everything */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;

	/*
    background: linear-gradient(
        to bottom,
        rgba(10, 48, 85, 0.6),
        rgba(0, 0, 0, 0.0)
    );*/
}

.site-header.is-hidden {
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}

.site-header {
    transition: transform 0.35s ease; /* smooth slide */
}



.logo {
    display: flex;
    flex-direction: column;
    letter-spacing: 0.18em;
    font-size: 11px;
    text-transform: uppercase;
}

.logo-main {
    font-weight: 700;
}

.logo-sub {
    opacity: 0.75;
}

.logo img {
    width: 200px;
    height: auto;
    display: block;
}

/* Simple hamburger (fully fixed for iOS + Android) */

.menu-toggle {
	
  --w: 30px;
  --h: 20px;
  --bar: 2px;
	

	width: var(--w);
	height: var(--h);
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;

    /* FIX 1: Disable iOS native button styling */
    appearance: none;
    -webkit-appearance: none;

    /* FIX 2: Prevent text color from affecting spans */
    color: transparent !important;
}

/* Mobile header tweaks */
@media (max-width: 700px) {
    .site-header.is-hidden {
        transform: none !important;
    }

    .logo img {
        max-width: 60vw;           /* never wider than 60% of viewport */
    }

    .menu-toggle {
        flex-shrink: 0;            /* never let the burger shrink away */
    }
}

/* HERO — UPDATED */

.hero {
    position: relative;
    min-height: 100vh;

    /* NEW: top padding (hero text starts 100px from top) */
    padding: 220px 40px 40px;

    display: flex;
    flex-direction: column;

    /* NEW: no vertical centering */
    justify-content: flex-start;

    color: #ffffff;

    background-image: url('/assets/images/hero-3.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: background-position;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.2)
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 520px;

    /* NEW: no margin needed, text starts from padding-top now */
    margin-top: 0;

    text-align: left; /* NEW: ensure left-aligned */
	
	font-family: 'brandon-grotesque', sans-serif;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    margin-bottom: 14px;
    opacity: 0.85;
}

.hero h1 {
    font-size: clamp(60px, 14vw, 160px);
    line-height: 1.02;
    font-weight: 900;
	text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-lead {
	font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    max-width: 420px;
    opacity: 0.9;
}

/* Scroll hint */

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 1;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-down:hover {
    opacity: 1;
    transform: translate(-50%, 2px);
}

.scroll-down img.scroll-icon {
    width: 42px;        /* adjust to desired size */
    height: auto;
    filter: invert(1);  /* makes dark SVG white */
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.scroll-down:hover img.scroll-icon {
    opacity: 1;
}

@keyframes caret-bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(6px); }
    100% { transform: translateY(0); }
}

.scroll-down img.scroll-icon {
    width: 32px;
    height: auto;
    filter: invert(1);
    opacity: 0.85;
    animation: caret-bounce 1.5s ease-in-out infinite;
}

/* Brands section */

.section-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 40px;
}

.brands {
    background-color: #050608;
    color: #ffffff;
}

.brands.light {
	background-color: #ffffff;
	color: #000000;
}

.brands h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.section-intro {
    font-size: 15px;
    max-width: 540px;
    opacity: 0.85;
    margin-bottom: 80px;
}

.brand-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
	grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.brand-card,
.brand-card.light {
    /*border: 1px solid rgba(255,255,255,0.12);*/
    border-radius: 8px;
    padding: 32px 0px;
    background: radial-gradient(circle at top left,
                                rgba(255,255,255,0.06),
                                rgba(0,0,0,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card.light {
    background: radial-gradient(circle at top left,
                                rgba(255,255,255,0.06),
                                rgba(0,0,0,0.06));
	
}

.brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    display: block;
    max-width: 100%;   /* don’t *force* 100%, just cap it */
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;  /* extra safety, keeps aspect ratio */
}

.brand-logo:hover {
	cursor: pointer;
}

.brand-card:hover .brand-logo {
    transform: scale(1.15);
    transition: transform 0.2s ease;
}

/* Footer */

.site-footer,
.site-footer.light {
	margin-top: 100px;
    background: #020305;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.site-footer.light {
	background: rgba(0,0,0,0.1);
	color: rgba(0,0,0,0.5);
}

.site-footer p:last-child {
	margin-top: 12px;
}

.site-footer img,
.site-footer.light img {
	width: 200px;
	height: auto;
	opacity: 1;
	margin-bottom: 20px;
}

.site-footer.light img {
	opacity: 1;
}

/* Responsive tweaks */

@media (max-width: 600px) {
    .site-header,
	.site-header.light {
        padding: 14px 20px;
    }

    .hero {
        padding: 100px 20px 32px; /* maintain top spacing on mobile */
    }

    .hero-content {
        max-width: 100%;
        margin-top: 0;
    }

    .section-inner {
        padding: 60px 20px;
    }
}



/* MENU TOGGLE ANIMATION */

.menu-toggle {
	width: var(--w);
	height: var(--h);
    background: none;
    border: none;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    cursor: pointer;
    z-index: 30; /* above the side menu */
}

.menu-toggle span {
	width: 100%;
    height: var(--bar);
    background: #ffffff;
    border-radius: 2px;
	transform-origin: center;
	will-change: transform, opacity;

	transition: transform 0.3s ease, opacity 0.25s ease;
}

/* Active → X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(calc((var(--h) - var(--bar)) / 2)) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);          /* <-- important for iOS */
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(calc(-1 * (var(--h) - var(--bar)) / 2)) rotate(-45deg);
}

/* SIDE MENU PANEL */

.side-menu {
    position: fixed;
    top: 0;
    right: -240px; /* hidden offscreen */
    width: 240px;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    transition: right 0.35s ease;
    z-index: 25; /* under toggle, above content */
    padding: 80px 40px; /* space for header area */
	
	font-family: 'brandon-grotesque', sans-serif;
	text-transform: uppercase;
}

.side-menu.open {
    right: 0; /* slide in */
}

.side-menu ul {
    list-style: none;
}

.side-menu li {
    margin-bottom: 20px;
		font-weight: 900;
}

.side-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 28px;
    letter-spacing: 0.03em;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.side-menu a:hover {
    opacity: 1;
}


/* ABOUT PAGE
   -------------------------------------------------- */

.page-about main {
    background-color: #050608;
}

/* Hero / intro */

.page-hero.about-hero {
    padding: 180px 40px 40px;
}

.page-hero-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 46px);
    margin-bottom: 24px;
	
	font-family: 'brandon-grotesque', sans-serif;
	text-transform: uppercase;
	font-weight: 900;
}

.page-intro {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 14px;
}

.page-hero {
    position: relative;
    width: 100%;
    padding: 120px 0; /* adjust hero height */
    color: #fff;
    background-image: url('/assets/images/hero-formenta-5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Optional: Dark overlay for text readability */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1); /* adjust opacity */
}

.page-hero-inner {
    position: relative; /* puts content above overlay */
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}






/* TIMELINE – YEAR ABOVE CONTENT (FORMENTA.SE STYLE)
   -------------------------------------------------- */

.timeline {
    padding: 40px 0 120px;
    background: #ffffff;
    color: #000000;
}

.timeline-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}

.timeline h2 {
    font-size: 24px;
    margin-bottom: 40px;
}

/* Whole timeline wrapper */
.timeline-alt {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Centre vertical line */
.timeline-alt::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0,0,0,0.25);
    transform: translateX(-0.5px);
}

/* Each year-group */
.timeline-alt-group {
    position: relative;
    padding: 36px 0 48px;
}

/* The year row */
.timeline-alt-year {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 auto 26px;        /* centred + spacing before content */

    font-family: 'brandon-grotesque', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1;

    background: #ffffff;        /* masks the line behind the year */
    padding: 10px 18px;
}

/* Entries container */
.timeline-alt-entries {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* Each entry uses a 3-col grid: left | spine | right */
.timeline-alt-entry {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: start;
    position: relative;
}

/* Connector line from spine to content */
/*
.timeline-alt-entry.left::before,
.timeline-alt-entry.right::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    width: 90px;
    height: 1px;
    background: rgba(0,0,0,0.25);
    transform: translateX(-50%);
}*/

.timeline-alt-entry.left::before {
    transform: translateX(-50%) translateX(-45px);
}

.timeline-alt-entry.right::before {
    transform: translateX(-50%) translateX(45px);
}

/* Card placement */
/* Ensure consistent card width so short entries don't "float" */
.timeline-alt-card {
    width: min(420px, 100%);
}

.timeline-alt-entry.left .timeline-alt-card {
    grid-column: 1;
    justify-self: end;      /* stick to the spine consistently */
    padding-right: 40px;
}

.timeline-alt-entry.right .timeline-alt-card {
    grid-column: 3;
    justify-self: start;    /* stick to the spine consistently */
    padding-left: 40px;
}

/* Typography */
.timeline-alt-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.9;
}

.timeline-alt-text {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Mobile: keep left/right layout, but compact */
@media (max-width: 800px) {

    .timeline-inner {
        padding: 0 24px;
    }

    /* Keep the spine in the middle (so left/right still works) */
    .timeline-alt::before {
        left: 50%;
        transform: translateX(-0.5px);
    }

    /* Smaller year, tighter spacing */
    .timeline-alt-group {
        padding: 22px 0 28px;
    }

    .timeline-alt-year {
        margin: 0 auto 12px;
        padding: 6px 10px;
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1;
    }

    /* Tighten vertical spacing between entries */
    .timeline-alt-entries {
        gap: 18px;
    }

    /* IMPORTANT: preserve the 3-column grid */
    .timeline-alt-entry {
        grid-template-columns: 1fr 44px 1fr; /* was 1fr 120px 1fr */
        align-items: start;
    }

    /* Cards: fixed width but smaller on mobile */
    .timeline-alt-card {
        width: min(320px, 100%);
    }

    /* Compact side padding towards the spine */
    .timeline-alt-entry.left .timeline-alt-card {
        grid-column: 1;
        justify-self: end;
        padding-right: 14px; /* was 40px */
    }

    .timeline-alt-entry.right .timeline-alt-card {
        grid-column: 3;
        justify-self: start;
        padding-left: 14px; /* was 40px */
    }

    /* Typography */
    .timeline-alt-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .timeline-alt-text {
        font-size: 14px;
        line-height: 1.6;
    }
}





.brandpage-info {
    background: #ffffff;
    color: #000000;
    padding: 80px 0;
    text-align: center;
	margin-bottom: 200px;
}

.brandpage-info-inner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.brandpage-logo {
	display: block;
	margin-bottom: 80px;
}

.brandpage-logo img {
    height: 120px;     /* adjust to taste */
	display: block;
    margin: 0 auto;
}

/* Info grid (stacked vertically) */
.brandpage-info-grid .info-block {
    margin-bottom: 50px;
}

.brandpage-info-grid .info-block:last-child {
    margin-bottom: 0;
}

.info-label {
    display: block;
    font-size: 16px;
    color: rgba(0,0,0,0.5); /* your gold tone from screenshot, adjust if needed */
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.info-value {
    display: block;
    font-size: 26px;
    font-weight: 600;
}

.info-value a {
    color: #000000;
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}







.press-page {
    background: #fff;
    padding: 120px 0;
}

.press-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}

.press-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
    text-align: center;
}

.press-item {
	padding-bottom: 80px;
    margin-bottom: 120px;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.press-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.fb-video {
	border-radius: 10px;
	margin-bottom: 30px;
}

.press-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.press-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}






/* CONTACT PAGE
   -------------------------------------------------- */

.contact-section {
    background: #000000;
    color: #ffffff;
    padding: 80px 0 120px;
}

.contact-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.contact-card {
    text-align: center;
}

.contact-photo {
    margin-bottom: 24px;
}

.contact-photo img {
    width: auto;
    height: 240px;
    margin: 0 auto;
}

.contact-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-title {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.6;
}

.contact-section a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-section a:hover {
    text-decoration: underline;
}

.contact-map {
    margin-top: 120px;
    width: 100%;
    height: 480px; /* adjust if you want larger */
    border-radius: 12px;
    overflow: hidden; /* round corners cleanly */
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.contact-map iframe:hover {
    filter: grayscale(0%);
}

/* Stack cards on smaller screens */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}







/* Make the text block the same width as on index */
.page-hero.about-hero .page-hero-inner {
    max-width: 1120px;           /* same as .hero-content */
    padding: 0;            /* 40px side padding, like index */
    margin: 0 auto;
}

@media (max-width: 700px) {
    .page-hero.about-hero {
        padding: 100px 20px 32px;   /* same as .hero on mobile */
    }

    .page-hero.about-hero .page-hero-inner {
        max-width: 100%;
        padding: 0;
    }
}