/* ========================================
   Dori's Premium Rolled Ice Cream
   Clean Minimalist — Terracotta & Sand
   ======================================== */

/* --- CSS Variables --- */
:root {
    --color-terracotta: #C2704E;
    --color-terracotta-dark: #A85A3A;
    --color-terracotta-light: #D4916F;
    --color-sand: #F5EDE4;
    --color-sand-light: #FAF6F2;
    --color-sand-dark: #E8DDD3;
    --color-cream: #FFFDF9;
    --color-text: #2C1810;
    --color-text-light: #6B4C3B;
    --color-text-muted: #9B8578;
    --color-line: #E8DDD3;
    --color-white: #FFFFFF;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

/* --- Section Titles --- */
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.title-accent {
    color: var(--color-terracotta);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 520px;
    line-height: 1.8;
}

.section-header--centered {
    text-align: center;
}

.section-header--centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border: 1.5px solid var(--color-terracotta);
}

.btn-primary:hover {
    background-color: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194, 112, 78, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-line);
}

.btn-outline:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background-color: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-line);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    color: var(--color-terracotta);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-terracotta);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--color-terracotta);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    padding: 0.6rem 1.4rem;
    border: 1.5px solid var(--color-terracotta);
    border-radius: 50px;
    color: var(--color-terracotta);
    transition: all var(--transition);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background-color: var(--color-terracotta);
    color: var(--color-white);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--color-text);
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #C2704E 0%,
        #D4916F 25%,
        #E8B498 45%,
        #F5EDE4 70%,
        #FAF6F2 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.hero-badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-terracotta-light);
}

.hero-title {
    margin-bottom: var(--space-md);
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    color: var(--color-terracotta);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-light);
    line-height: 1.9;
    max-width: 560px;
    margin: 0 auto var(--space-lg);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-terracotta);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-line);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-terracotta-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* --- About --- */
.about {
    padding: var(--space-2xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-terracotta-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: var(--space-sm);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-line);
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.about-value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    color: var(--color-terracotta);
}

.about-value strong {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.about-value span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- Flavors --- */
.flavors {
    padding: var(--space-2xl) 0;
    background-color: var(--color-sand-light);
}

.section-header {
    margin-bottom: var(--space-xl);
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.flavor-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.flavor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.08);
    border-color: var(--color-line);
}

.flavor-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.flavor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.flavor-card:hover .flavor-card-image img {
    transform: scale(1.05);
}

.flavor-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: var(--color-terracotta);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.flavor-card-content {
    padding: var(--space-sm) var(--space-md) var(--space-md);
}

.flavor-card-name {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.flavor-card-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.flavors-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-line);
    font-size: 0.88rem;
    color: var(--color-text-light);
}

.flavors-note svg {
    flex-shrink: 0;
    color: var(--color-terracotta);
}

/* --- Process --- */
.process {
    padding: var(--space-2xl) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.process-step {
    text-align: center;
    padding: var(--space-md);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 80px;
    right: -15px;
    width: 30px;
    height: 1px;
    background-color: var(--color-line);
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-terracotta-light);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.process-step-visual {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 5/4;
    margin-bottom: var(--space-sm);
}

.process-step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.process-step-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 280px;
    margin: 0 auto;
}

/* --- Visit --- */
.visit {
    padding: var(--space-2xl) 0;
    background-color: var(--color-sand-light);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-line);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    color: var(--color-terracotta);
}

.visit-detail strong {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.visit-detail p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--color-terracotta);
    transition: color var(--transition);
}

.visit-detail a:hover {
    color: var(--color-terracotta-dark);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 560px;
}

.visit-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-sand-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.visit-map-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-light);
}

.visit-map-content svg {
    color: var(--color-terracotta);
}

.visit-map-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Contact --- */
.contact {
    padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.contact-info-mini {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--color-text-light);
}

.contact-info-item svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.contact-info-item a {
    color: var(--color-text-light);
    transition: color var(--transition);
}

.contact-info-item a:hover {
    color: var(--color-terracotta);
}

.contact-form-wrap {
    background-color: var(--color-sand-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--color-line);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-input {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(194, 112, 78, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-sm);
}

.form-success.visible {
    display: flex;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-terracotta);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.form-success-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
}

.form-success-text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    background-color: var(--color-text);
    color: var(--color-sand);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-sand);
}

.footer-logo-icon {
    color: var(--color-terracotta-light);
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    margin-left: 2.6rem;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link-group strong {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-sand-dark);
    margin-bottom: 0.25rem;
}

.footer-link-group a {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer-link-group a:hover {
    color: var(--color-terracotta-light);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-md);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-address {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .flavors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-step:not(:last-child)::after {
        top: 70px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem var(--space-md) var(--space-md);
        gap: var(--space-sm);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transition: right var(--transition);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span {
        background-color: var(--color-text);
    }
    
    .hero-title-line {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-image-wrap {
        order: -1;
    }
    
    .about-image-accent {
        top: -12px;
        right: -12px;
    }
    
    .flavors-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .visit-map {
        aspect-ratio: 16/9;
        max-height: none;
    }
    
    .footer-top {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-wrap {
        padding: var(--space-md);
    }
}
