/* ====== SEEMORE Corporate Site — Full Redesign ====== */

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

/* ── Variables ── */
:root {
    --red: #e63946;
    --dark: #0a0a0c;
    --sidebar-w: 96px;
    --brand-w: 128px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
    font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
    background-color: var(--dark);
    color: #ffffff;
    overflow-x: hidden;
}

/* ── Brand Vertical (left column) ── */
.brand-vertical {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--brand-w);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
    pointer-events: none;
}

.brand-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.5em;
    font-size: 1.8rem;
    font-family: "Shippori Mincho", serif;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.brand-line {
    margin-top: 3rem;
    width: 1px;
    height: 8rem;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

/* ── Sidebar Navigation (right) ── */
.sidebar-nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: var(--sidebar-w);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 1rem 0;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease;
    width: 100%;
    text-align: center;
    border: none;
    background: none;
}

.sidebar-item:hover,
.sidebar-item.active {
    color: var(--red);
}

.sidebar-item svg {
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.sidebar-item:hover svg {
    transform: scale(1.12);
}

.sidebar-item span {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

/* ── Language Switcher ── */
.lang-switcher {
    position: fixed;
    top: 0.9rem;
    right: calc(var(--sidebar-w) + 1rem);
    z-index: 200;
    display: flex;
    gap: 0.35rem;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.13);
    color: #cbd5e1;
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.13);
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.25);
}

/* ── Main Content wrapper ── */
.main-content {
    margin-left: var(--brand-w);
    margin-right: var(--sidebar-w);
    min-height: 100vh;
}

/* ── Hero ── */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-grad-r {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--dark) 20%, rgba(10, 10, 12, 0.4) 60%, transparent);
}

.hero-grad-b {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark) 0%, transparent 50%);
}

.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: heroFadeIn 1s ease 0.2s both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-label {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-line {
    height: 2px;
    width: 48px;
    background: var(--red);
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.hero-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12rem;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M0 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S0 15.523 0 10zm20 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S20 25.523 20 20zM10 20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S10 25.523 10 20zM0 20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S0 25.523 0 20z' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}

/* ── Content Area ── */
#content {
    padding: 5rem 5rem 6rem;
}

/* ── Content Boxes (tab sections) ── */
.content-box {
    display: none;
    animation: sectionIn 0.55s ease;
}

.content-box.active {
    display: block;
}

@keyframes sectionIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Section Title (left red border) ── */
.section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    padding-left: 1.8rem;
    border-left: 4px solid var(--red);
    letter-spacing: 0.2em;
    font-family: "Shippori Mincho", serif;
    color: #ffffff;
}

.section-center-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: 0.35em;
    color: #ffffff;
}

/* ══════════════════ ABOUT SECTION ══════════════════ */

/* Overview grid */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
    overflow: hidden;
}

.overview-grid::after {
    content: '';
    position: absolute;
    top: 0;
    right: -6rem;
    width: 36%;
    height: 100%;
    background: rgba(230, 57, 70, 0.08);
    transform: skewX(-12deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 0l30 17.32v34.64L30 69.28 0 51.96V17.32L30 0zm0 11.547L10 23.093v23.094L30 57.734l20-11.547V23.093L30 11.547z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.overview-text p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 1.4rem;
}

.overview-img-wrap {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.overview-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overview-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.18), transparent);
    mix-blend-mode: overlay;
}

/* Business cards section */
.biz-section {
    margin-bottom: 8rem;
    padding: 5rem;
    margin-left: -5rem;
    margin-right: -5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 0l30 17.32v34.64L30 69.28 0 51.96V17.32L30 0zm0 11.547L10 23.093v23.094L30 57.734l20-11.547V23.093L30 11.547z' fill='%23ffffff' fill-opacity='0.025'/%3E%3C/svg%3E");
}

.biz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.biz-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 2rem;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.biz-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.18);
}

.biz-card-img {
    height: 17rem;
    position: relative;
    overflow: hidden;
}

.biz-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.biz-card:hover .biz-card-img img {
    transform: scale(1.1);
}

.biz-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
}

.biz-badge {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    padding: 0.32rem 1.1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.06em;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.biz-badge.red  { background: var(--red); }
.biz-badge.blue { background: #2563eb; }

.biz-card-body {
    padding: 2.5rem;
}

.biz-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.biz-card-body h3::after {
    content: '›';
    color: var(--red);
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.biz-card-body p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    margin-bottom: 1.8rem;
    font-size: 0.9rem;
}

.biz-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.biz-tag {
    padding: 0.3rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
}

/* Vision section */
.vision-section {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: rgba(230, 57, 70, 0.09);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.vision-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M0 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S0 15.523 0 10zm20 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S20 25.523 20 20zM10 20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S10 25.523 10 20zM0 20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S0 25.523 0 20z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.vision-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 0.2em;
    font-style: italic;
    position: relative;
    color: #fff;
    z-index: 1;
}

.vision-section > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    max-width: 780px;
    margin: 0 auto 4rem;
    line-height: 2.1;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

/* Detailed text */
.detail-section {
    max-width: 800px;
    margin: 0 auto;
}

.detail-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    border-left: 3px solid var(--red);
    padding-left: 1rem;
    margin: 3rem 0 1.2rem;
    letter-spacing: 0.08em;
}

.detail-section p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.95;
    margin-bottom: 1.2rem;
    font-size: 0.93rem;
}

.img-center {
    text-align: center;
    margin: 2.5rem 0;
}

.img-center img {
    width: 80%;
    max-width: 580px;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

/* ══════════════════ STORES SECTION ══════════════════ */

.stores-header {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: 0.2em;
}

.store-group {
    margin-bottom: 4rem;
}

.store-group-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.9rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.store-group-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
}

.store-group-header span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}

.store-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1rem;
    overflow: hidden;
    padding: 1.2rem 1.2rem 0;
    transition: border-color 0.25s;
}

.store-item:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.store-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.2rem;
}

.store-address {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 0.8rem;
}

.store-item iframe {
    display: block;
    border-radius: 0 0 8px 8px;
    width: 100%;
}

/* ══════════════════ SHOP SECTION ══════════════════ */

.shop-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.shop-inner h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.shop-inner p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.85;
}

.shop-link {
    display: inline-block;
    color: var(--red);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.12em;
    padding: 0.9rem 2.8rem;
    border: 2px solid var(--red);
    border-radius: 999px;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.shop-link:hover {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    transform: translateY(-2px);
}

.shop-img {
    width: 100%;
    border-radius: 1.2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ══════════════════ CONTACT SECTION ══════════════════ */

.contact-inner {
    max-width: 660px;
    margin: 0 auto;
}

.contact-inner h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
}

form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.8rem;
    border-radius: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.6rem;
}

label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 0.75rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
}

textarea {
    height: 155px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--red);
    border: none;
    border-radius: 999px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    margin-top: 0.75rem;
}

.submit-btn:hover:not(:disabled) {
    background: #c0303b;
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(230, 57, 70, 0.38);
}

.submit-btn:disabled {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.25);
    cursor: not-allowed;
    box-shadow: none;
}

.g-recaptcha {
    margin: 1.5rem 0 0.5rem;
}

/* ══════════════════ COMPANY INFO SECTION ══════════════════ */

.company-inner {
    max-width: 680px;
    margin: 0 auto;
}

.company-inner h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.company-table th,
.company-table td {
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.78);
}

.company-table th {
    width: 155px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

/* ══════════════════ FOOTER ══════════════════ */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    padding: 4rem 5rem;
    position: relative;
    z-index: 10;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    font-family: "Shippori Mincho", serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #fff;
    margin-bottom: 0.4rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.06em;
}

.footer-contact {
    text-align: right;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
    line-height: 1.8;
}

/* ══════════════════ RESPONSIVE ══════════════════ */

@media (max-width: 1024px) {
    :root { --brand-w: 0px; }
    .brand-vertical { display: none; }
    .main-content { margin-left: 0; }
}

@media (max-width: 768px) {
    :root { --sidebar-w: 0px; }

    /* Bottom navigation bar on mobile */
    .sidebar-nav {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 60px;
        flex-direction: row;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        justify-content: space-around;
        gap: 0;
    }

    .sidebar-item {
        flex: 1;
        padding: 0.5rem 0;
    }

    .sidebar-item svg { width: 20px; height: 20px; }

    .main-content {
        margin-right: 0;
        margin-bottom: 60px;
    }

    .lang-switcher {
        right: 1rem;
    }

    #hero {
        padding: 0 1.6rem;
    }

    #content {
        padding: 3rem 1.6rem 4rem;
    }

    footer {
        padding: 3rem 1.6rem;
    }

    /* Overview grid → single column */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
        overflow: visible;
    }

    .overview-grid::after { display: none; }

    /* Business section */
    .biz-section {
        padding: 3rem 1.6rem;
        margin-left: -1.6rem;
        margin-right: -1.6rem;
    }

    .biz-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .biz-card-img { height: 13rem; }

    .vision-section {
        padding: 5rem 0.5rem;
    }

    /* Stores */
    .store-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-contact { text-align: left; }

    /* Form */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
