/* ============================================================
   OTTO SHEDS - v0.1
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --otto-blue:        #1f4d7a;
    --otto-blue-dark:   #143656;
    --otto-blue-deep:   #0d2640;
    --otto-green:       #5a8f3d;
    --otto-orange:      #e87b2c;
    --otto-orange-dark: #c8651a;
    --otto-charcoal:    #1c1c1c;
    --otto-charcoal-soft:#555555;
    --otto-bg:          #fdfaf3;
    --otto-bg-alt:      #f3eee0;
    --otto-card:        #ffffff;
    --otto-border:      #e8e2d5;
    --otto-border-strong:#cdc3a8;

    --otto-font-display: 'Anton', 'Impact', sans-serif;
    --otto-font-body:    'Inter', system-ui, -apple-system, sans-serif;

    --otto-radius:      6px;
    --otto-radius-lg:   12px;
    --otto-shadow:      0 4px 20px rgba(20, 54, 86, 0.08);
    --otto-shadow-lg:   0 12px 40px rgba(20, 54, 86, 0.14);

    --otto-container:   1240px;
    --otto-gutter:      clamp(20px, 4vw, 48px);

    --otto-section-py:  clamp(60px, 10vw, 120px);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* Defensive: never allow page-level horizontal scroll on any device. */
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--otto-font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--otto-charcoal);
    background: var(--otto-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

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

a {
    color: var(--otto-blue);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--otto-font-display);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--otto-charcoal);
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: 0.04em; }
h4 { font-size: 1rem; letter-spacing: 0.08em; }
p  { margin: 0 0 1em; }

ul, ol { padding: 0; margin: 0; list-style: none; }

.otto-skip-link {
    position: absolute;
    left: -9999px;
    background: var(--otto-charcoal);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
}
.otto-skip-link:focus { left: 8px; top: 8px; }

/* ---------- Layout primitives ---------- */
.otto-container {
    width: 100%;
    max-width: var(--otto-container);
    margin: 0 auto;
    padding: 0 var(--otto-gutter);
}

.otto-section-head {
    max-width: 760px;
    margin: 0 0 clamp(40px, 6vw, 60px);
}
.otto-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.otto-section-head h2 { margin-bottom: 16px; }
.otto-section-head__sub {
    color: var(--otto-charcoal-soft);
    font-size: 1.05rem;
    margin: 0;
}

.otto-eyebrow {
    font-family: var(--otto-font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--otto-orange);
    margin: 0 0 14px;
}
.otto-eyebrow--light { color: var(--otto-orange); opacity: 0.95; }

/* ---------- Buttons ---------- */
.otto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--otto-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.15s ease, background 0.15s, color 0.15s, border-color 0.15s;
    line-height: 1.2;
    white-space: nowrap;
}
.otto-btn:hover { transform: translateY(-1px); }

.otto-btn--primary {
    background: var(--otto-orange);
    color: #fff;
}
.otto-btn--primary:hover { background: var(--otto-orange-dark); color: #fff; }

.otto-btn--secondary {
    background: var(--otto-blue);
    color: #fff;
}
.otto-btn--secondary:hover { background: var(--otto-blue-dark); color: #fff; }

.otto-btn--ghost {
    background: transparent;
    color: var(--otto-charcoal);
    border-color: var(--otto-charcoal);
}
.otto-btn--ghost:hover { background: var(--otto-charcoal); color: #fff; }

.otto-btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.otto-btn--block { width: 100%; }

/* ---------- Header ---------- */
.otto-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 250, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--otto-border);
}
.otto-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px var(--otto-gutter);
    gap: 32px;
}
.otto-header__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}
.otto-header__logo {
    display: block;
    height: 64px;
    width: auto;
    max-width: 260px;
}
@media (min-width: 900px) {
    .otto-header__logo { height: 88px; max-width: 360px; }
}
.otto-header__nav { display: none; }
.otto-header__nav ul { display: flex; gap: 28px; }
.otto-header__nav a {
    text-decoration: none;
    color: var(--otto-charcoal);
    font-weight: 500;
    font-size: 0.95rem;
}
.otto-header__nav a:hover { color: var(--otto-orange); }

.otto-header__actions { display: flex; align-items: center; gap: 14px; }
.otto-header__phone {
    display: none;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--otto-charcoal);
    font-weight: 600;
    font-size: 0.95rem;
}
.otto-header__cta { display: none; }

/* mobile menu toggle */
.otto-header__menu-toggle {
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.otto-header__menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--otto-charcoal);
    transition: transform 0.2s, opacity 0.2s;
}
.otto-header__menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.otto-header__menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.otto-header__menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.otto-mobile-nav {
    display: none;
    background: var(--otto-bg);
    border-top: 1px solid var(--otto-border);
}
.otto-mobile-nav.is-open { display: block; }
.otto-mobile-nav ul {
    padding: 16px var(--otto-gutter);
    display: flex;
    flex-direction: column;
}
.otto-mobile-nav a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: var(--otto-charcoal);
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--otto-border);
}

@media (min-width: 900px) {
    .otto-header__nav { display: block; }
    .otto-header__phone { display: inline-flex; }
    .otto-header__cta { display: inline-flex; }
    .otto-header__menu-toggle { display: none; }
}

/* ---------- HERO ---------- */
.otto-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}
.otto-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.otto-hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.otto-hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 38, 64, 0.2) 0%, rgba(13, 38, 64, 0.85) 80%);
}
.otto-hero__inner {
    position: relative;
    z-index: 1;
    padding: clamp(80px, 12vw, 160px) var(--otto-gutter) clamp(60px, 10vw, 100px);
}
.otto-hero__eyebrow {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 18px;
}
.otto-hero__h1 {
    color: #fff;
    max-width: 14ch;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.otto-hero__sub {
    max-width: 56ch;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
}
.otto-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.otto-hero__ctas .otto-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}
.otto-hero__ctas .otto-btn--ghost:hover { background: #fff; color: var(--otto-charcoal); }

/* ---------- Trust strip ---------- */
.otto-trust {
    background: var(--otto-blue-deep);
    color: #fff;
    padding: 22px 0;
}
.otto-trust__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}
.otto-trust__item {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.otto-trust__item strong {
    font-family: var(--otto-font-display);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: #fff;
}
.otto-trust__item span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ---------- Audience tiles ---------- */
.otto-audience { padding: var(--otto-section-py) 0; }
.otto-audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.otto-audience__tile a {
    display: block;
    background: var(--otto-card);
    border-radius: var(--otto-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--otto-charcoal);
    box-shadow: var(--otto-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}
.otto-audience__tile a:hover {
    transform: translateY(-3px);
    box-shadow: var(--otto-shadow-lg);
}
.otto-audience__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.otto-audience__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.otto-audience__tile a:hover .otto-audience__media img { transform: scale(1.04); }
.otto-audience__body {
    padding: 22px;
    position: relative;
}
.otto-audience__body h3 {
    margin-bottom: 8px;
    color: var(--otto-blue-dark);
}
.otto-audience__body p {
    font-size: 0.95rem;
    color: var(--otto-charcoal-soft);
    margin: 0;
}
.otto-audience__arrow {
    position: absolute;
    right: 22px;
    top: 22px;
    color: var(--otto-orange);
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.2s;
}
.otto-audience__tile a:hover .otto-audience__arrow { transform: translateX(4px); }

/* ---------- EziBuilt band ---------- */
.otto-ezibuilt {
    background: var(--otto-blue-deep);
    color: #fff;
    padding: var(--otto-section-py) 0;
}
.otto-ezibuilt h2, .otto-ezibuilt h3 { color: #fff; }
.otto-ezibuilt__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 32px;
}
.otto-ezibuilt__col {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--otto-radius-lg);
    padding: 36px;
}
.otto-ezibuilt__col h3 {
    color: var(--otto-orange);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.otto-ezibuilt__col p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}
.otto-ezibuilt__attrib {
    font-family: var(--otto-font-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #fff;
    margin-top: 24px;
    text-transform: uppercase;
}
.otto-ezibuilt__attrib span {
    font-family: var(--otto-font-body);
    text-transform: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0;
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}
.otto-ezibuilt__divider {
    text-align: center;
    font-family: var(--otto-font-display);
    color: var(--otto-orange);
    font-size: 2.4rem;
}

@media (min-width: 800px) {
    .otto-ezibuilt__grid {
        grid-template-columns: 1fr auto 1fr;
    }
}

/* ---------- Shed types ---------- */
.otto-types { padding: var(--otto-section-py) 0; background: var(--otto-bg-alt); }
.otto-types__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.otto-types__card a {
    display: block;
    background: var(--otto-card);
    border-radius: var(--otto-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--otto-charcoal);
    box-shadow: var(--otto-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}
.otto-types__card a:hover {
    transform: translateY(-3px);
    box-shadow: var(--otto-shadow-lg);
}
.otto-types__media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.otto-types__media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.otto-types__body { padding: 24px; }
.otto-types__price {
    display: inline-block;
    background: var(--otto-orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}
.otto-types__body h3 {
    color: var(--otto-blue-dark);
    margin-bottom: 8px;
}
.otto-types__body p {
    margin: 0;
    color: var(--otto-charcoal-soft);
    font-size: 0.95rem;
}

/* ---------- Region C ---------- */
.otto-region {
    padding: var(--otto-section-py) 0;
    background: linear-gradient(135deg, var(--otto-blue) 0%, var(--otto-blue-deep) 100%);
    color: #fff;
}
.otto-region h2, .otto-region h3 { color: #fff; }
.otto-region__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
.otto-region__copy p { color: rgba(255, 255, 255, 0.9); font-size: 1.05rem; }
.otto-region__copy strong { color: #fff; }

.otto-region__matrix {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--otto-radius-lg);
    padding: 28px;
}
.otto-region__matrix h3 {
    color: var(--otto-orange);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.otto-region__matrix dl { margin: 0; }
.otto-region__matrix div {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.otto-region__matrix div:last-child { border-bottom: 0; padding-bottom: 0; }
.otto-region__matrix dt {
    font-family: var(--otto-font-display);
    font-size: 1.6rem;
    color: var(--otto-orange);
    line-height: 1;
}
.otto-region__matrix dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (min-width: 900px) {
    .otto-region__grid { grid-template-columns: 1.3fr 1fr; gap: 80px; }
}

/* ---------- Gallery (auto-scrolling marquee) ---------- */
.otto-gallery { padding: var(--otto-section-py) 0; }

.otto-marquee {
    width: 100%;
    overflow: hidden;
    height: clamp(220px, 38vw, 440px);
    margin: 0 0 36px;
    /* Soft fade at left/right edges so images appear to glide in and out */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.otto-marquee__track {
    display: flex;
    height: 100%;
    gap: 16px;
    width: max-content;
    animation: otto-marquee-scroll 80s linear infinite;
    will-change: transform;
}

.otto-marquee:hover .otto-marquee__track,
.otto-marquee:focus-within .otto-marquee__track {
    animation-play-state: paused;
}

.otto-marquee__slide {
    flex-shrink: 0;
    height: 100%;
    border-radius: var(--otto-radius-lg);
    overflow: hidden;
    background: var(--otto-border);
    box-shadow: var(--otto-shadow);
}

.otto-marquee__slide img {
    display: block;
    height: 100%;
    width: auto;
    object-fit: cover;
}

@keyframes otto-marquee-scroll {
    from { transform: translate3d(0, 0, 0); }
    /* Track contains two copies of the image set; -50% lands the start of
       the second copy at the original starting position for a seamless loop. */
    to   { transform: translate3d(-50%, 0, 0); }
}

/* Respect users who prefer reduced motion: stop the animation, allow manual scroll. */
@media (prefers-reduced-motion: reduce) {
    .otto-marquee {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        -webkit-mask-image: none;
                mask-image: none;
    }
    .otto-marquee__track { animation: none; }
    .otto-marquee__slide { scroll-snap-align: start; }
}

.otto-gallery__more { text-align: center; margin-top: 8px; }

/* ---------- Process ---------- */
.otto-process {
    padding: var(--otto-section-py) 0;
    background: var(--otto-bg-alt);
}
.otto-process__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    counter-reset: step;
}
@media (min-width: 600px) {
    .otto-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .otto-process__steps { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}
.otto-process__steps li {
    background: var(--otto-card);
    border-radius: var(--otto-radius-lg);
    padding: 28px;
    border-top: 4px solid var(--otto-orange);
    box-shadow: var(--otto-shadow);
}
.otto-process__num {
    font-family: var(--otto-font-display);
    color: var(--otto-orange);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.otto-process__steps h3 {
    color: var(--otto-blue-dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.otto-process__steps p {
    margin: 0;
    color: var(--otto-charcoal-soft);
    font-size: 0.95rem;
}

/* ---------- Service area ---------- */
.otto-area { padding: var(--otto-section-py) 0; }
.otto-area__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.otto-area__copy p { font-size: 1.05rem; }
.otto-area__cta-line {
    background: var(--otto-bg-alt);
    border-left: 4px solid var(--otto-orange);
    padding: 16px 20px;
    border-radius: var(--otto-radius);
    margin-top: 20px;
}
.otto-area__map {
    aspect-ratio: 4 / 3;
    border-radius: var(--otto-radius-lg);
    overflow: hidden;
    box-shadow: var(--otto-shadow);
    background: var(--otto-bg-alt);
}
.otto-area__map-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.otto-area__suburbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 48px;
}
.otto-area__suburbs li {
    background: var(--otto-card);
    border: 1px solid var(--otto-border);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    color: var(--otto-charcoal-soft);
}

@media (min-width: 900px) {
    .otto-area__grid { grid-template-columns: 1.1fr 1fr; gap: 60px; }
}

/* ---------- Testimonials ---------- */
.otto-testimonials {
    padding: var(--otto-section-py) 0;
    background: var(--otto-blue-deep);
    color: #fff;
}
.otto-testimonials h2 { color: #fff; }
.otto-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.otto-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--otto-radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.otto-testimonial__quote {
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    flex: 1;
    margin-bottom: 22px;
}
.otto-testimonial footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}
.otto-testimonial strong {
    font-family: var(--otto-font-display);
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: var(--otto-orange);
}
.otto-testimonial span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* ---------- Why OTTO ---------- */
.otto-why { padding: var(--otto-section-py) 0; }
.otto-why__table-wrap { overflow-x: auto; }
.otto-why__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--otto-card);
    border-radius: var(--otto-radius-lg);
    overflow: hidden;
    box-shadow: var(--otto-shadow);
    min-width: 600px;
}
.otto-why__table th,
.otto-why__table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--otto-border);
    font-size: 0.95rem;
}
.otto-why__table thead th {
    background: var(--otto-bg-alt);
    font-family: var(--otto-font-display);
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--otto-charcoal);
    text-transform: uppercase;
    font-weight: 400;
}
.otto-why__table tbody th {
    font-family: var(--otto-font-body);
    font-weight: 600;
    color: var(--otto-blue-dark);
    background: var(--otto-bg);
    font-size: 0.95rem;
}
.otto-why__table .otto-why__us {
    background: rgba(232, 123, 44, 0.08);
    color: var(--otto-charcoal);
    font-weight: 600;
    border-left: 3px solid var(--otto-orange);
}
.otto-why__table thead .otto-why__us {
    background: var(--otto-orange);
    color: #fff;
    border-left: 0;
}

/* ---------- FAQ ---------- */
.otto-faq { padding: var(--otto-section-py) 0; background: var(--otto-bg-alt); }
.otto-faq__list {
    max-width: 820px;
    margin: 0 auto;
}
.otto-faq details {
    background: var(--otto-card);
    border-radius: var(--otto-radius-lg);
    margin-bottom: 12px;
    box-shadow: var(--otto-shadow);
    overflow: hidden;
}
.otto-faq summary {
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    color: var(--otto-blue-dark);
    list-style: none;
    position: relative;
    padding-right: 56px;
    font-size: 1.05rem;
}
.otto-faq summary::-webkit-details-marker { display: none; }
.otto-faq summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--otto-font-display);
    font-size: 1.6rem;
    color: var(--otto-orange);
    transition: transform 0.2s;
}
.otto-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.otto-faq details p {
    padding: 0 28px 24px;
    color: var(--otto-charcoal-soft);
    margin: 0;
}
.otto-faq__more { text-align: center; margin-top: 32px; }

/* ---------- Quote CTA ---------- */
.otto-quote {
    padding: var(--otto-section-py) 0;
    background: linear-gradient(160deg, var(--otto-blue-deep) 0%, var(--otto-blue) 100%);
    color: #fff;
}
.otto-quote h2 { color: #fff; }
.otto-quote__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}
.otto-quote__copy p { color: rgba(255, 255, 255, 0.9); font-size: 1.05rem; }
.otto-quote__or {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.95rem;
}
.otto-quote__or a { color: var(--otto-orange); font-weight: 600; }

.otto-quote__form {
    background: #fff;
    color: var(--otto-charcoal);
    border-radius: var(--otto-radius-lg);
    padding: 32px;
    box-shadow: var(--otto-shadow-lg);
}
.otto-quote__steps {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    counter-reset: step;
    overflow-x: auto;
}
.otto-quote__steps li {
    flex: 1;
    min-width: 110px;
    background: var(--otto-bg-alt);
    border-radius: var(--otto-radius);
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-bottom: 3px solid var(--otto-border-strong);
}
.otto-quote__steps li.is-active {
    background: var(--otto-bg);
    border-bottom-color: var(--otto-orange);
}
.otto-quote__step-num {
    font-family: var(--otto-font-display);
    color: var(--otto-orange);
    font-size: 1.1rem;
}
.otto-quote__step-label {
    font-size: 0.78rem;
    color: var(--otto-charcoal-soft);
    line-height: 1.2;
}

.otto-quote__fields {
    border: 0;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.otto-quote__fields label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--otto-charcoal-soft);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.otto-quote__fields input,
.otto-quote__fields select {
    font: inherit;
    padding: 12px 14px;
    border: 1px solid var(--otto-border-strong);
    border-radius: var(--otto-radius);
    background: var(--otto-bg);
    color: var(--otto-charcoal);
    font-size: 1rem;
    font-weight: 400;
}
.otto-quote__fields input:focus,
.otto-quote__fields select:focus {
    outline: 2px solid var(--otto-orange);
    outline-offset: 1px;
    border-color: var(--otto-orange);
}
.otto-quote__small {
    font-size: 0.78rem;
    color: var(--otto-charcoal-soft);
    margin-top: 12px;
    text-align: center;
}

@media (min-width: 900px) {
    .otto-quote__grid { grid-template-columns: 1fr 1.1fr; gap: 60px; }
    .otto-quote__fields { grid-template-columns: 1fr 1fr; }
    .otto-quote__fields label:first-child { grid-column: 1 / -1; }
}

/* ---------- Footer ---------- */
.otto-footer {
    background: var(--otto-charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 32px;
    font-size: 0.92rem;
}
.otto-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}
.otto-footer__brand-col { grid-column: span 1; }
.otto-footer__logo {
    display: block;
    height: auto;
    width: 100%;
    max-width: 200px;
    margin-bottom: 18px;
}
.otto-footer__small {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 14px;
}
.otto-footer__small a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.otto-footer__small a:hover { color: var(--otto-orange); }

.otto-footer h4 {
    font-family: var(--otto-font-body);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--otto-orange);
    font-weight: 700;
    margin-bottom: 16px;
}
.otto-footer ul li {
    padding: 6px 0;
}
.otto-footer ul a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}
.otto-footer ul a:hover { color: #fff; }

.otto-footer__strip {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.otto-footer__partners {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.otto-footer__copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    margin: 0;
}

/* ============================================================
   INNER PAGE HEROES (about, contact, sheds, gallery, sub-shed pages)
   Mirrors .otto-hero pattern but slightly shorter for inner pages.
============================================================ */
.otto-page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
    background: var(--otto-blue-deep);
}
.otto-page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.otto-page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.otto-page-hero__inner {
    position: relative;
    z-index: 1;
    padding: clamp(70px, 11vw, 130px) var(--otto-gutter) clamp(50px, 8vw, 90px);
}
.otto-page-hero .otto-hero__h1,
.otto-page-hero .otto-hero__sub,
.otto-page-hero .otto-hero__eyebrow { color: #fff; }
.otto-page-hero .otto-hero__h1 { color: #fff; }
.otto-page-hero .otto-hero__sub { color: rgba(255, 255, 255, 0.92); }

/* ============================================================
   ABOUT - story (two-column intro)
============================================================ */
.otto-story { padding: var(--otto-section-py) 0; }
.otto-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 900px) {
    .otto-story__grid { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.otto-story__copy p { color: var(--otto-charcoal-soft); font-size: 1.05rem; }
.otto-story__copy strong { color: var(--otto-charcoal); }
.otto-story__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--otto-radius-lg);
    box-shadow: var(--otto-shadow-lg);
}
.otto-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   ABOUT - team card
============================================================ */
.otto-team {
    padding: var(--otto-section-py) 0;
    background: var(--otto-bg-alt);
}
.otto-team__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--otto-card);
    border-radius: var(--otto-radius-lg);
    overflow: hidden;
    box-shadow: var(--otto-shadow);
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 800px) {
    .otto-team__card { grid-template-columns: 1fr 1.2fr; }
}
.otto-team__photo { aspect-ratio: 4 / 5; overflow: hidden; }
.otto-team__photo img { width: 100%; height: 100%; object-fit: cover; }
.otto-team__body { padding: clamp(28px, 4vw, 48px); }
.otto-team__body h3 {
    color: var(--otto-blue-dark);
    margin-bottom: 8px;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}
.otto-team__role {
    color: var(--otto-orange);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}
.otto-team__quote {
    font-style: italic;
    border-left: 3px solid var(--otto-orange);
    padding-left: 16px;
    margin-top: 20px;
    color: var(--otto-charcoal);
}

/* ============================================================
   ABOUT - commitments
============================================================ */
.otto-commitments { padding: var(--otto-section-py) 0; }
.otto-commitments__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.otto-commitments__grid li {
    background: var(--otto-card);
    border-top: 4px solid var(--otto-orange);
    border-radius: var(--otto-radius-lg);
    padding: 28px;
    box-shadow: var(--otto-shadow);
}
.otto-commitments__grid h3 {
    color: var(--otto-blue-dark);
    margin-bottom: 12px;
    font-size: 1.4rem;
}
.otto-commitments__grid p {
    margin: 0;
    color: var(--otto-charcoal-soft);
    font-size: 0.95rem;
}

/* ============================================================
   ABOUT - accreditations
============================================================ */
.otto-accreds {
    padding: var(--otto-section-py) 0;
    background: var(--otto-blue-deep);
    color: #fff;
}
.otto-accreds h2 { color: #fff; }
.otto-accreds__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 600px) {
    .otto-accreds__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .otto-accreds__grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}
.otto-accreds__grid li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--otto-radius-lg);
    padding: 24px;
}
.otto-accreds__grid strong {
    font-family: var(--otto-font-display);
    color: var(--otto-orange);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 8px;
}
.otto-accreds__grid span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   CONTACT - quote form wizard extensions (add to base .otto-quote)
============================================================ */
.otto-quote__form--wizard .otto-quote__fields { display: none; }
.otto-quote__form--wizard .otto-quote__fields.is-active { display: grid; }

.otto-quote__nav {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.otto-quote__nav .otto-btn { flex: 1; min-width: 140px; }
.otto-quote__nav .otto-btn[hidden] { display: none; }

.otto-quote__alert {
    padding: 16px 20px;
    border-radius: var(--otto-radius);
    margin-bottom: 20px;
    font-weight: 500;
}
.otto-quote__alert--ok {
    background: #e8f3dc;
    color: #2c5414;
    border-left: 4px solid var(--otto-green);
}
.otto-quote__alert--error {
    background: #fbe6d4;
    color: #7a3308;
    border-left: 4px solid var(--otto-orange);
}

/* ============================================================
   GALLERY - filter bar + grid
============================================================ */
.otto-gallery-grid-section { padding: var(--otto-section-py) 0; }
.otto-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.otto-gallery-grid figure {
    margin: 0;
    border-radius: var(--otto-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--otto-border);
    box-shadow: var(--otto-shadow);
    position: relative;
}
.otto-gallery-grid figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.otto-gallery-grid figure:hover img { transform: scale(1.05); }
.otto-gallery-grid figure[hidden] { display: none; }

.otto-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.otto-filter-bar button {
    background: var(--otto-card);
    border: 1px solid var(--otto-border);
    color: var(--otto-charcoal);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.otto-filter-bar button:hover,
.otto-filter-bar button.is-active {
    background: var(--otto-orange);
    border-color: var(--otto-orange);
    color: #fff;
}

/* ============================================================
   SHEDS PAGE - Why us value props
============================================================ */
.otto-whyus {
    padding: var(--otto-section-py) 0;
    background: var(--otto-bg-alt);
}
.otto-whyus__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.otto-whyus__grid li {
    background: var(--otto-card);
    border-radius: var(--otto-radius-lg);
    padding: 28px;
    box-shadow: var(--otto-shadow);
    border-top: 4px solid var(--otto-orange);
}
.otto-whyus__icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 14px;
}
.otto-whyus__grid h3 {
    color: var(--otto-blue-dark);
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.otto-whyus__grid p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--otto-charcoal-soft);
}

/* ============================================================
   SHEDS PAGE - Fully custom (sizes / Colorbond / roof profiles)
============================================================ */
.otto-custom { padding: var(--otto-section-py) 0; }
.otto-custom__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 900px) {
    .otto-custom__grid { grid-template-columns: repeat(3, 1fr); }
}
.otto-custom__col {
    background: var(--otto-card);
    border-radius: var(--otto-radius-lg);
    padding: 32px;
    box-shadow: var(--otto-shadow);
    border-top: 4px solid var(--otto-blue);
}
.otto-custom__col h3 {
    color: var(--otto-blue-dark);
    font-size: 1.35rem;
    margin-bottom: 14px;
}
.otto-custom__col p {
    color: var(--otto-charcoal-soft);
    font-size: 0.95rem;
}
.otto-custom__list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}
.otto-custom__list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--otto-border);
    color: var(--otto-charcoal);
    font-size: 0.92rem;
}
.otto-custom__list li:last-child { border-bottom: 0; }
.otto-custom__list--profiles li { line-height: 1.55; }
.otto-custom__list strong {
    color: var(--otto-blue-dark);
    font-weight: 700;
    display: inline-block;
    min-width: 80px;
}

.otto-custom__swatches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 16px 0 8px;
    list-style: none;
    padding: 0;
}
.otto-custom__swatches li {
    aspect-ratio: 1 / 1;
    border-radius: var(--otto-radius);
    border: 1px solid var(--otto-border);
    position: relative;
    overflow: hidden;
}
.otto-custom__swatches li span {
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.2;
}
.otto-custom__small {
    font-size: 0.82rem;
    color: var(--otto-charcoal-soft);
    font-style: italic;
    margin-top: 8px;
}

/* ============================================================
   SHEDS PAGE - Gallery preview (small grid linking to /gallery/)
============================================================ */
.otto-gallery-preview {
    padding: var(--otto-section-py) 0;
    background: var(--otto-bg-alt);
}
.otto-gallery-preview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.otto-gallery-preview__grid li {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--otto-radius-lg);
    box-shadow: var(--otto-shadow);
}
.otto-gallery-preview__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.otto-gallery-preview__grid li:hover img { transform: scale(1.04); }
.otto-gallery-preview__more {
    text-align: center;
    margin-top: 32px;
}

/* ============================================================
   GALLERY PAGE - aspect-ratio tile variants for the masonry feel
============================================================ */
.otto-gallery-tile { list-style: none; margin: 0; }
.otto-gallery-tile figure {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--otto-radius-lg);
    overflow: hidden;
    box-shadow: var(--otto-shadow);
    background: var(--otto-border);
}
.otto-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.otto-gallery-tile:hover img { transform: scale(1.04); }
.otto-gallery-tile--landscape { aspect-ratio: 4 / 3; }
.otto-gallery-tile--portrait  { aspect-ratio: 3 / 4; }
.otto-gallery-tile--square    { aspect-ratio: 1 / 1; }
.otto-gallery-tile--pano      { aspect-ratio: 21 / 9; }
@media (min-width: 700px) {
    .otto-gallery-tile--pano { grid-column: span 2; }
}

/* Override the simple .otto-gallery-grid figure rule from earlier so per-tile
   aspect ratios take effect (the parent <li> dictates aspect, not the figure). */
.otto-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 0;
}
.otto-gallery-grid > .otto-gallery-tile { aspect-ratio: auto; }
.otto-gallery-grid > .otto-gallery-tile figure { aspect-ratio: inherit; }

/* ============================================================
   DREAM & DESIGN - 3D shed designer CTA band
   Used on homepage and sheds page.
============================================================ */
.otto-designer {
    padding: var(--otto-section-py) 0;
    background: linear-gradient(135deg, var(--otto-blue-deep) 0%, var(--otto-blue) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.otto-designer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}
@media (min-width: 900px) {
    .otto-designer__inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.otto-designer__copy h2 {
    color: #fff;
    margin-bottom: 16px;
}
.otto-designer__copy p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0 0 18px;
}
.otto-designer__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
@media (min-width: 600px) {
    .otto-designer__features { grid-template-columns: 1fr 1fr; }
}
.otto-designer__features li {
    padding-left: 28px;
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.4;
}
.otto-designer__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--otto-orange);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.3;
}
.otto-designer__actions {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.otto-designer__small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 14px 0 0;
}
.otto-designer__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--otto-radius-lg);
    box-shadow: var(--otto-shadow-lg);
    background: var(--otto-blue-dark);
}
.otto-designer__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.otto-designer:hover .otto-designer__media img { transform: scale(1.04); }
.otto-designer__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(13, 38, 64, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.otto-designer__badge::before {
    content: '◉';
    color: var(--otto-orange);
    margin-right: 6px;
}
.otto-designer__overlay-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 24px;
    background: linear-gradient(180deg, rgba(13, 38, 64, 0) 0%, rgba(13, 38, 64, 0.9) 70%);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
}

/* ---------- Legal pages (Privacy, Terms) ---------- */
.otto-page-hero--legal {
    min-height: auto;
    background: linear-gradient(160deg, var(--otto-blue-deep) 0%, var(--otto-blue) 100%);
    color: #fff;
}
.otto-page-hero--legal .otto-hero__h1,
.otto-page-hero--legal .otto-hero__sub { color: #fff; }
.otto-page-hero--legal .otto-page-hero__inner {
    padding: clamp(60px, 9vw, 110px) var(--otto-gutter) clamp(40px, 7vw, 80px);
}

.otto-legal-updated {
    margin-top: 8px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.otto-legal-notice {
    background: var(--otto-bg-alt);
    padding: 24px 0;
    border-bottom: 1px solid var(--otto-border);
}
.otto-legal-notice__box {
    background: #fff;
    border-left: 4px solid var(--otto-orange);
    padding: 16px 20px;
    border-radius: var(--otto-radius);
    box-shadow: var(--otto-shadow);
}
.otto-legal-notice__box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--otto-charcoal-soft);
}
.otto-legal-notice__box strong { color: var(--otto-charcoal); }

.otto-legal {
    padding: var(--otto-section-py) 0;
    background: var(--otto-bg);
}
.otto-legal__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.otto-legal-toc {
    background: var(--otto-card);
    border: 1px solid var(--otto-border);
    border-radius: var(--otto-radius-lg);
    padding: 24px 28px;
    box-shadow: var(--otto-shadow);
    position: sticky;
    top: 100px;
}
.otto-legal-toc ol {
    list-style: decimal inside;
    margin: 0;
    padding: 0;
    counter-reset: toc;
}
.otto-legal-toc li {
    padding: 6px 0;
    border-bottom: 1px solid var(--otto-border);
    font-size: 0.92rem;
}
.otto-legal-toc li:last-child { border-bottom: 0; }
.otto-legal-toc a {
    color: var(--otto-charcoal);
    text-decoration: none;
}
.otto-legal-toc a:hover { color: var(--otto-orange); }

.otto-legal-content {
    max-width: 820px;
    background: var(--otto-card);
    border: 1px solid var(--otto-border);
    border-radius: var(--otto-radius-lg);
    padding: clamp(28px, 5vw, 56px);
    box-shadow: var(--otto-shadow);
}
.otto-legal-content h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: var(--otto-blue-dark);
    margin-top: 40px;
    margin-bottom: 14px;
    scroll-margin-top: 110px;
}
.otto-legal-content h2:first-of-type { margin-top: 24px; }
.otto-legal-content p {
    color: var(--otto-charcoal);
    line-height: 1.65;
    font-size: 1rem;
}
.otto-legal-intro {
    font-size: 1.08rem;
    color: var(--otto-charcoal-soft);
    border-left: 3px solid var(--otto-orange);
    padding-left: 18px;
    margin-bottom: 32px;
}
.otto-legal-list {
    list-style: disc outside;
    padding-left: 22px;
    margin: 0 0 20px;
}
.otto-legal-list li {
    padding: 4px 0;
    color: var(--otto-charcoal);
    line-height: 1.6;
    font-size: 1rem;
}
.otto-legal-list li strong { color: var(--otto-blue-dark); }
.otto-legal-content em {
    background: rgba(232, 123, 44, 0.1);
    color: var(--otto-orange-dark);
    padding: 1px 6px;
    border-radius: 3px;
    font-style: normal;
    font-weight: 600;
    font-size: 0.92rem;
}

@media (min-width: 1000px) {
    .otto-legal__grid {
        grid-template-columns: 260px 1fr;
        gap: 60px;
    }
}

/* ---------- Generic CTA band (used by legal pages and others) ---------- */
.otto-cta-band {
    padding: var(--otto-section-py) 0;
    background: linear-gradient(135deg, var(--otto-blue) 0%, var(--otto-blue-deep) 100%);
    color: #fff;
    text-align: center;
}
.otto-cta-band h2 {
    color: #fff;
    margin-bottom: 14px;
}
.otto-cta-band__inner p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin: 0 auto 28px;
    max-width: 56ch;
}
.otto-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.otto-cta-band .otto-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}
.otto-cta-band .otto-btn--ghost:hover {
    background: #fff;
    color: var(--otto-charcoal);
}

/* ---------- Mobile floating CTAs ---------- */
.otto-mobile-cta {
    position: fixed;
    bottom: 0;
    width: 50%;
    padding: 16px 12px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: var(--otto-blue-deep);
    font-weight: 600;
    z-index: 90;
    border-top: 2px solid var(--otto-orange);
}
.otto-mobile-cta { left: 0; }
.otto-mobile-cta--quote {
    left: 50%;
    background: var(--otto-orange);
    border-top-color: var(--otto-orange-dark);
}
@media (min-width: 900px) {
    .otto-mobile-cta { display: none; }
}
@media (max-width: 899px) {
    body { padding-bottom: 64px; } /* leave room for sticky bar */
}

/* ============================================================
   PHASE C - Projects + Testimonials (v0.2)
============================================================ */

/* ---------- Projects archive ---------- */
.otto-projects {
    padding: 80px 0;
    background: var(--otto-bg);
}
.otto-projects__filters {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.otto-projects__filters li { margin: 0; }
.otto-chip {
    display: inline-block;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid var(--otto-border-strong);
    border-radius: 999px;
    color: var(--otto-charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
}
.otto-chip:hover {
    border-color: var(--otto-orange);
    color: var(--otto-orange);
}
.otto-chip.is-active {
    background: var(--otto-blue-deep);
    border-color: var(--otto-blue-deep);
    color: #fff;
}
.otto-projects__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.otto-projects__empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: var(--otto-radius-lg);
    border: 1px solid var(--otto-border);
}
.otto-projects__empty h2 { margin: 0 0 12px; }
.otto-projects__empty p { margin: 0; color: var(--otto-charcoal-soft); }

/* ---------- Project card ---------- */
.otto-project-card {
    list-style: none;
    margin: 0;
    background: #fff;
    border-radius: var(--otto-radius-lg);
    overflow: hidden;
    border: 1px solid var(--otto-border);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.otto-project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13, 38, 64, 0.10);
}
.otto-project-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.otto-project-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--otto-bg-alt);
}
.otto-project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.otto-project-card:hover .otto-project-card__media img { transform: scale(1.04); }
.otto-project-card__body {
    padding: 18px 20px 22px;
}
.otto-project-card__title {
    margin: 0 0 6px;
    font-size: 19px;
    line-height: 1.25;
    color: var(--otto-blue-deep);
}
.otto-project-card__sub {
    margin: 0 0 10px;
    color: var(--otto-charcoal-soft);
    font-size: 14px;
}
.otto-project-card__meta {
    margin: 0;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--otto-charcoal-soft);
}
.otto-project-card__meta span { white-space: nowrap; }

/* ---------- Single project page ---------- */
.otto-page-hero--project .otto-page-hero__inner { padding-bottom: 36px; }
.otto-project-meta {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
}
.otto-project-meta li { margin: 0; }
.otto-project-meta strong { color: #fff; font-weight: 600; }

.otto-project-body {
    padding: 80px 0;
    background: var(--otto-bg);
}
.otto-project-body__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}
@media (max-width: 800px) {
    .otto-project-body__grid { grid-template-columns: 1fr; gap: 40px; }
}
.otto-project-body__copy h2 { margin-top: 0; }
.otto-project-body__copy p { margin: 0 0 1em; }
.otto-project-body__features {
    background: #fff;
    border: 1px solid var(--otto-border);
    border-radius: var(--otto-radius-lg);
    padding: 24px 26px;
}
.otto-project-body__features h3 {
    margin: 0 0 14px;
    font-size: 16px;
    color: var(--otto-blue-deep);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.otto-project-body__features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.otto-project-body__features li {
    padding: 8px 0 8px 22px;
    position: relative;
    border-bottom: 1px solid var(--otto-border);
    font-size: 15px;
}
.otto-project-body__features li:last-child { border-bottom: 0; }
.otto-project-body__features li::before {
    content: "";
    position: absolute;
    left: 0; top: 16px;
    width: 8px;
    height: 8px;
    background: var(--otto-orange);
    border-radius: 50%;
}

/* ---------- Project gallery ---------- */
.otto-project-gallery {
    padding: 80px 0;
    background: var(--otto-bg-alt);
}
.otto-project-gallery__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    grid-auto-flow: dense;
}
.otto-project-gallery__grid .otto-gallery-tile--portrait { grid-row: span 2; }

/* ---------- Testimonials section + cards ---------- */
.otto-testi {
    padding: 80px 0;
    background: var(--otto-blue-deep);
    color: #fff;
}
.otto-testi .otto-section-head h2,
.otto-testi .otto-section-head__sub { color: #fff; }
.otto-testi .otto-eyebrow { color: var(--otto-orange); }
.otto-testi__rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.otto-project-testi {
    padding: 80px 0;
    background: var(--otto-bg-alt);
}
.otto-project-testi .otto-testi__rail {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.otto-testi-card {
    background: #fff;
    color: var(--otto-charcoal);
    border-radius: var(--otto-radius-lg);
    padding: 26px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.otto-project-testi .otto-testi-card { box-shadow: 0 4px 16px rgba(13, 38, 64, 0.08); }
.otto-testi-card__stars {
    color: var(--otto-orange);
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}
.otto-testi-card__quote {
    margin: 0;
    border: 0;
    padding: 0;
    quotes: "\201C" "\201D";
    flex: 1;
}
.otto-testi-card__quote p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: var(--otto-charcoal);
}
.otto-testi-card__quote p::before {
    content: open-quote;
    color: var(--otto-orange);
    font-size: 36px;
    line-height: 0;
    margin-right: 4px;
    vertical-align: -10px;
    font-family: var(--otto-font-display);
}
.otto-testi-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-top: 6px;
    font-size: 14px;
    color: var(--otto-charcoal-soft);
    border-top: 1px solid var(--otto-border);
    padding-top: 14px;
}
.otto-testi-card__meta strong { color: var(--otto-blue-deep); font-weight: 600; }
.otto-testi-card__loc::before { content: "·"; margin-right: 8px; color: var(--otto-charcoal-soft); }
.otto-testi-card__link {
    margin-left: auto;
    color: var(--otto-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}
.otto-testi-card__link:hover { text-decoration: underline; }

