:root {
    --gold: #da2326;
    --ink: #0c4b92;
    --black: #141414;
    --paper: #F7F4EF;
    --muted: #888;
    --border: #E2DDD6;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden
}

    /* ── Testimonials auto-scroll ── */
.testimonials-section {
    padding: 100px 0;          /* remove side padding so cards bleed edge-to-edge */
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.testimonials-section .section-label,
.testimonials-section h2 {
    padding: 0 60px;           /* keep heading aligned */
}

.testimonials-section h2 {
    margin-bottom: 56px;
}

.testimonials-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollTrack 60s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;  /* pause on hover */
}

@keyframes scrollTrack {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); } /* moves exactly one set of cards */
}

.testimonial-card {
    flex: 0 0 340px;
    padding: 36px;
    border: 1px solid var(--border);
    background: var(--paper);
    cursor: default;
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px;
    transition: padding .4s, background .4s
}

nav.scrolled {
    background: rgba(247, 244, 239, .96);
    backdrop-filter: blur(12px);
    padding: 18px 60px;
    border-bottom: 1px solid var(--border)
}

.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--ink)
}

.logo em {
    color: var(--gold);
    font-style: normal
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 13px;
    letter-spacing: .05em;
    opacity: .6;
    transition: opacity .2s
}

.nav-links a:hover {
    opacity: 1
}

.nav-cta {
    opacity: 1 !important;
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 9px 22px;
    font-size: 12px !important;
    letter-spacing: .08em;
    font-weight: 500 !important;
    transition: background .25s !important
}

.nav-cta:hover {
    background: var(--gold) !important
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: all .3s
}

#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 80px;
    position: relative;
    border-bottom: 1px solid var(--border)
}

.hero-content {
    max-width: 640px;
    z-index: 1
}

.hero-tag {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp .7s forwards .4s
}

h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -.01em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .7s forwards .6s
}

h1 em {
    color: var(--gold);
    font-style: italic
}

.hero-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp .7s forwards .8s
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .7s forwards 1s
}

.btn-primary {
    background: var(--ink);
    color: var(--paper);
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: .08em;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s
}

.btn-primary:hover {
    background: var(--gold)
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--ink);
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: .08em;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color .25s, color .25s
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.hero-visual {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    animation: fadeIn 1.2s forwards 1.2s
}

.flag-graphic {
    width: 260px;
    height: 174px;
    position: relative
}

.flag-stripe-min {
    height: 33.333%;
    transform-origin: left center
}

.flag-stripe-min:nth-child(1) {
    background: #B22234;
    animation: waveMin 4s ease-in-out infinite
}

.flag-stripe-min:nth-child(2) {
    background: var(--paper);
    animation: waveMin 4s ease-in-out .15s infinite;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.flag-stripe-min:nth-child(3) {
    background: var(--gold);
    animation: waveMin 4s ease-in-out .3s infinite
}

@keyframes waveMin {

    0%,
    100% {
    clip-path: polygon(0 0, 100% 4%, 100% 96%, 0 100%)
    }

    50% {
    clip-path: polygon(0 4%, 100% 0%, 100% 100%, 0 96%)
    }
}

.flag-pole-v {
    position: absolute;
    left: -8px;
    top: -30px;
    bottom: -20px;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), #8B6914)
}

.flag-pole-v::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 48px;
    opacity: 0;
    animation: fadeUp .7s forwards 1.4s
}

.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--ink);
    line-height: 1
}

.stat-label {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px
}

.contact-qr-row {
    display: flex;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    background: transparent;
}

.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.qr-img-wrap {
    padding: 10px;
    border: 1px solid var(--border);
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}

.qr-card:hover .qr-img-wrap {
    border-color: var(--gold);
}

.qr-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.qr-icon {
    font-size: 12px;
}

@keyframes fadeUp {
    from {
    opacity: 0;
    transform: translateY(20px)
    }

    to {
    opacity: 1;
    transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
    opacity: 0
    }

    to {
    opacity: .25
    }
}

.ticker {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
    background: var(--paper)
}

.ticker-inner {
    display: flex;
    animation: ticker 30s linear infinite;
    width: max-content
}

.ticker-item {
    white-space: nowrap;
    padding: 0 32px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 16px
}

.ticker-item::after {
    content: '·';
    color: var(--gold)
}

@keyframes ticker {
    from {
    transform: translateX(0)
    }

    to {
    transform: translateX(-50%)
    }
}

section,
.alt-section {
    padding: 100px 60px
}

.section-label {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px
}

h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.01em
}

h2 em {
    font-style: italic;
    color: var(--gold)
}

.section-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 460px
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

#services {
    border-top: 1px solid var(--border)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    border: 1px solid var(--border)
}

.service-card {
    padding: 44px 36px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background .3s
}

.service-card:hover {
    background: #F2EEE7
}

.service-num {
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 24px
}

.service-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block
}

.service-title {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    margin-bottom: 12px
}

.service-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7
}

#why-us {
  display: flex;
  align-items: center;
  justify-content: center;  /* centers both columns */
  gap: 60px;
  padding: 80px 5%;
}

.why-visual-min {
  display: flex;
  justify-content: center;  /* centers the flag inside its column */
  align-items: center;
  flex: 1;
}

.why-flag-display-min {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 520px;
  width: 320px;
  margin: 0 auto;
}

.wfd-pole-min {
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #b8860b, #8B6914, #5c4a1e);
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 2px 0 6px rgba(0,0,0,0.2);
  position: absolute;
  left: 20%;              /* pole sits at horizontal center */
  transform: translateX(-50%);
}

.wfd-flag-min {
  position: absolute;
  left: calc(20% + 3px);  /* flag starts exactly at the pole's right edge */
  animation: flagRise 3s ease-in-out forwards;
}

.wfd-flag-min img {
  width: 280px;         /* bigger flag */
  height: auto;
  display: block;
  filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.15));
}

/* Rising animation - flag climbs up the pole */
@keyframes flagRise {
  0% {
    top: 480px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 1;
  }
}

/* After rising, gentle flutter */
.wfd-flag-min img {
  width: 280px;
  height: auto;
  display: block;
  filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.15));
  animation: flagFlutter 2.5s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes flagFlutter {
  0%, 100% { transform: skewY(0deg) scaleX(1); }
  25%       { transform: skewY(-1deg) scaleX(0.97); }
  75%       { transform: skewY(1deg) scaleX(0.98); }
}


@keyframes rotate {
    to {
    transform: rotate(360deg)
    }
}

.features-list-min {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--border)
}

.feature-item-min {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border)
}

.feature-icon-min {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.feature-title-min {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: .02em
}

.feature-text-min {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6
}

#products {
    border-top: 1px solid var(--border)
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px
}

.product-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.filter-btn {
    padding: 7px 18px;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--ink);
    color: var(--ink)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px
}

.product-card {
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color .3s;
    cursor: pointer
}

.product-card:hover {
    border-color: var(--gold)
}

.product-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EDE9E2;
    position: relative;
    overflow: hidden
}

.product-flag-preview {
    width: 75%;
    height: 55%;
    animation: flagAnim 2.5s ease-in-out infinite;
    transform-origin: left center
}

@keyframes flagAnim {

    0%,
    100% {
    transform: perspective(400px) rotateY(-1.5deg)
    }

    50% {
    transform: perspective(400px) rotateY(1.5deg)
    }
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: white;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 3px 8px
}

.product-info {
    padding: 20px
}

.product-cat {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px
}

.product-name {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    margin-bottom: 6px
}

.product-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.product-material {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .05em
}

.product-enquire {
    color: var(--ink);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .25s, color .25s
}

.product-enquire:hover {
    gap: 12px;
    color: var(--gold)
}

.process-section {
    padding: 100px 60px;
    border-top: 1px solid var(--border);
    background: #EDE9E2
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border)
}

.process-step {
    padding: 36px 28px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.step-num {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1
}

.step-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: .02em
}

.step-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65
}

.testimonials-section {
    padding: 100px 60px;
    border-top: 1px solid var(--border)
}

.testimonial-card:hover {
    border-color: var(--gold)
}

.stars {
    color: var(--gold);
    font-size: 11px;
    margin-bottom: 16px
}

.testimonial-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 14px;
    color: var(--gold)
}

.author-name {
    font-size: 13px;
    font-weight: 500
}

.author-role {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px
}

#contact {
    border-top: 1px solid var(--border);
    background: #EDE9E2
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0
}

.contact-item {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border)
}

.contact-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.contact-label {
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px
}

.contact-value {
    font-size: 13px;
    color: var(--ink);
    line-height: 1.6
}

.contact-value a {
    color: var(--ink);
    text-decoration: none
}

.contact-value a:hover {
    color: var(--gold)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-label {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted)
}

.form-input,
.form-select,
.form-textarea {
    background: var(--paper);
    border: 1px solid var(--border);
    color: var(--ink);
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    width: 100%;
    transition: border-color .2s
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--ink)
}

.form-select option {
    background: white
}

.form-textarea {
    resize: vertical;
    min-height: 110px
}

.form-submit {
    background: var(--ink);
    border: none;
    color: var(--paper);
    padding: 14px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: background .25s
}

.form-submit:hover {
    background: var(--gold)
}

.map-section {
    padding: 0 60px 80px;
    border-top: 1px solid var(--border);
    background: #EDE9E2
}

.map-container {
    border: 1px solid var(--border);
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    overflow: hidden
}

.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: .5
}

.map-info {
    position: relative;
    z-index: 1;
    text-align: center
}

.map-pin {
    font-size: 32px;
    margin-bottom: 12px;
    animation: pinBounce 2s ease-in-out infinite
}

@keyframes pinBounce {

    0%,
    100% {
    transform: translateY(0)
    }

    50% {
    transform: translateY(-8px)
    }
}

.map-name {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    margin-bottom: 6px
}

.map-address {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px
}

.map-link {
    display: inline-block;
    padding: 9px 20px;
    border: 1px solid var(--border);
    color: var(--ink);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color .2s, color .2s
}

.map-link:hover {
    border-color: var(--gold);
    color: var(--gold)
}

footer {
    background: var(--ink);
    color: var(--paper);
    padding: 60px
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 14px
}

.footer-logo em {
    color: var(--gold);
    font-style: normal
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    max-width: 240px;
    margin-bottom: 24px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.social-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: border-color .2s
}

.social-btn:hover {
    border-color: rgba(255, 255, 255, .4)
}

.footer-col h4 {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
    transition: color .2s
}

.footer-links a:hover {
    color: rgba(255, 255, 255, .85)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .04em
}

.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 12px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
    text-decoration: none;
    transition: transform .25s, box-shadow .25s
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4)
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.77, 0, .175, 1)
}

.mobile-menu.open {
    transform: translateX(0)
}

.mobile-menu a {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--ink);
    text-decoration: none;
    transition: color .2s
}

.mobile-menu a:hover {
    color: var(--gold)
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px)
}

.back-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: all .3s
}

.back-top.visible {
    opacity: 1;
    pointer-events: all
}

.back-top:hover {
    background: var(--ink);
    color: var(--paper)
}

@media(max-width:900px) {
    nav {
    padding: 20px 24px
    }

    nav.scrolled {
    padding: 14px 24px
    }

    .nav-links {
    display: none
    }

    .hamburger {
    display: flex
    }

    section,
    .alt-section {
    padding: 70px 24px
    }

    #home {
    padding: 120px 24px 80px
    }

    .hero-visual {
    display: none
    }

    .hero-stats {
    right: 24px;
    gap: 24px
    }

    .stat-num {
    font-size: 26px
    }

    .services-grid {
    grid-template-columns: 1fr 1fr
    }

    #why-us {
    grid-template-columns: 1fr;
    padding: 70px 24px;
    gap: 40px
    }

    .why-visual-min {
    height: 260px
    }

    .process-steps {
    grid-template-columns: 1fr 1fr
    }

    .products-header {
    flex-direction: column;
    align-items: flex-start
    }

    .testimonials-grid {
    grid-template-columns: 1fr
    }

    .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px
    }

    .form-row {
    grid-template-columns: 1fr
    }

    .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px
    }

    .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
    }

    .map-section {
    padding: 0 24px 70px
    }
}

@media(max-width:600px) {
    .hero-stats {
    display: none
    }

    .footer-top {
    grid-template-columns: 1fr
    }

    .process-steps {
    grid-template-columns: 1fr
    }

    .services-grid {
    grid-template-columns: 1fr
    }
}

/* ── Mobile: Why Us Section ── */
@media (max-width: 768px) {
  #why-us {
    flex-direction: column;
    padding: 50px 5%;
    gap: 40px;
    text-align: center;
  }

  .why-visual-min {
    width: 100%;
    justify-content: center;
  }

  .why-flag-display-min {
    height: 340px;
    width: 220px;
    margin: 0 auto;
  }

  .wfd-flag-min img {
    width: 180px;
  }

  @keyframes flagRise {
    0% {
      top: 310px;
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    100% {
      top: 20px;
      opacity: 1;
    }
  }

  .features-list-min {
    text-align: left;
  }

  .section-sub {
    margin: 0 auto;
    max-width: 90%;
  }
}

/* ── Extra small screens ── */
@media (max-width: 480px) {
  .why-flag-display-min {
    height: 280px;
    width: 180px;
  }

  .wfd-flag-min img {
    width: 150px;
  }

  @keyframes flagRise {
    0% {
      top: 250px;
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    100% {
      top: 20px;
      opacity: 1;
    }
  }
}