/* ========================================
   Walk The Line Tattoo — Styles
   Palette: Emerald + Cream + Warm Gold
   ======================================== */

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --emerald-900: #042f24;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #047857;
    --emerald-500: #059669;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;

    --cream-50:  #faf9f6;
    --cream-100: #f5f3ed;
    --cream-200: #ece8de;
    --cream-300: #e0dbd0;

    --gold-500:  #b8860b;
    --gold-400:  #d4a574;
    --gold-300:  #e8c9a0;
    --gold-200:  #f5e6cc;

    --ink-900:  #1a1a1a;
    --ink-700:  #2d2d2d;
    --ink-600:  #3d3d3d;
    --ink-500:  #555555;
    --ink-400:  #6b6b6b;
    --ink-300:  #8a8a8a;
    --ink-200:  #b0b0b0;
    --ink-100:  #d4d4d4;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:  'Lato', system-ui, -apple-system, sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 48px rgba(0,0,0,0.11);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--ink-700);
    background-color: var(--cream-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--emerald-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--ink-500);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-700);
    color: #ffffff;
    border-color: var(--emerald-700);
}

.btn--primary:hover {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--cream-100);
    border-color: rgba(250, 249, 246, 0.4);
}

.btn--ghost:hover {
    background: rgba(250, 249, 246, 0.1);
    border-color: rgba(250, 249, 246, 0.7);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--ink-900);
    color: var(--cream-100);
    border-color: var(--ink-900);
}

.btn--dark:hover {
    background: var(--ink-700);
    border-color: var(--ink-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--gold {
    background: var(--gold-400);
    color: var(--ink-900);
    border-color: var(--gold-400);
}

.btn--gold:hover {
    background: var(--gold-300);
    border-color: var(--gold-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.5);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--emerald-800);
}

.nav__logo-icon {
    color: var(--emerald-600);
}

.nav__logo:hover .nav__logo-icon {
    color: var(--emerald-700);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-600);
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--emerald-600);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--emerald-700);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--emerald-700);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
    background: var(--emerald-800);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink-700);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream-50);
}

.mobile-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--ink-700);
    padding: 16px 24px;
    transition: color var(--transition);
    display: block;
}

.mobile-menu__link:hover {
    color: var(--emerald-700);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream-50);
    background: var(--emerald-700);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
}

.mobile-menu__contact {
    margin-top: 32px;
    font-size: 0.875rem;
    color: var(--ink-400);
    line-height: 1.8;
}

.mobile-menu__contact a {
    color: var(--emerald-600);
    font-weight: 500;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream-50);
    padding-top: 72px;
}

.hero__split--left {
    display: flex;
    align-items: center;
    padding: 80px 64px 80px 80px;
    background: var(--cream-50);
}

.hero__content {
    max-width: 520px;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 20px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--emerald-900);
    margin-bottom: 24px;
}

.hero__subheadline {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-500);
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-600);
}

.hero__trust-icon {
    width: 18px;
    height: 18px;
    color: var(--emerald-600);
    flex-shrink: 0;
}

.hero__split--right {
    position: relative;
    overflow: hidden;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(4, 47, 36, 0.25), transparent);
    pointer-events: none;
}

/* ── Divider ── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: var(--emerald-200);
}

.section-divider svg {
    width: 100%;
    max-width: 1200px;
}

/* ── Services ── */
.services {
    padding: 100px 0;
    background: var(--cream-50);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-100);
}

.service-card__icon {
    color: var(--emerald-600);
    margin-bottom: 20px;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--emerald-800);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card__text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--ink-500);
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: var(--cream-100);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-group {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about__image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream-100);
}

.about__image-secondary img {
    width: 260px;
    height: 210px;
    object-fit: cover;
    display: block;
}

.about__image-accent-block {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background: var(--emerald-700);
    border-radius: var(--radius-md);
    opacity: 0.08;
    z-index: -1;
}

.about__content {
    max-width: 480px;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--emerald-800);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-500);
    margin-bottom: 16px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0 40px;
    padding: 28px 32px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-200);
}

.about__value {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about__value-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1.2;
}

.about__value-label {
    font-size: 0.875rem;
    color: var(--ink-500);
    line-height: 1.5;
}

.about__content .btn {
    margin-top: 8px;
}

/* ── Gallery ── */
.gallery {
    padding: 100px 0;
    background: var(--cream-50);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery__item--wide img {
    height: 300px;
}

.gallery__item:not(.gallery__item--wide) img {
    height: 260px;
}

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

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 47, 36, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.gallery__note {
    text-align: center;
}

.gallery__note p {
    font-size: 0.9375rem;
    color: var(--ink-400);
    font-style: italic;
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 100px 0;
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03), transparent 70%);
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-banner__eyebrow {
    color: var(--gold-400);
    margin-bottom: 16px;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-banner__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--cream-100);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__info {
    max-width: 480px;
}

.contact__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--emerald-800);
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-500);
    margin-bottom: 32px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--cream-300);
}

.contact__detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-300);
}

.contact__detail-label svg {
    color: var(--emerald-600);
}

.contact__detail dd {
    font-size: 1rem;
    color: var(--ink-700);
    line-height: 1.7;
}

.contact__detail a {
    color: var(--ink-700);
    transition: color var(--transition);
}

.contact__detail a:hover {
    color: var(--emerald-700);
}

.contact__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Form */
.contact__form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-200);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald-800);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.9375rem;
    color: var(--ink-400);
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink-600);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--ink-900);
    background: var(--cream-50);
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--emerald-500);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--ink-200);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: none;
    text-align: center;
    padding: 32px 20px;
    color: var(--emerald-700);
}

.form__success svg {
    margin: 0 auto 12px;
    color: var(--emerald-600);
}

.form__success p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: var(--emerald-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer__logo-icon {
    color: var(--gold-400);
}

.footer__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--gold-400);
}

.footer__contact p {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--gold-400);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer__bottom p:last-child {
    font-style: italic;
}

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__split--left {
        padding: 64px 48px;
    }

    .about__image-secondary {
        right: -20px;
        bottom: -20px;
    }

    .about__image-secondary img {
        width: 200px;
        height: 160px;
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero__split--left {
        padding: 80px 24px 48px;
        order: 2;
    }

    .hero__split--right {
        order: 1;
        min-height: 50vh;
    }

    .hero__image-wrapper {
        min-height: 50vh;
    }

    .hero__content {
        max-width: 100%;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-group {
        max-width: 480px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__info {
        max-width: 100%;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__split--left {
        padding: 72px 24px 40px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner__actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery__item--wide img,
    .gallery__item:not(.gallery__item--wide) img {
        height: 240px;
    }

    .contact__form-wrapper {
        padding: 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .footer__brand {
        grid-column: span 1;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about__image-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
    }

    .about__image-main img {
        height: 320px;
    }
}

@media (max-width: 380px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }
}
