/*
 * Sección: Inicio — d' churros y +
 * Alcance: CSS exclusivo de la sección .dcy-home
 */

.dcy-home {
    --dcy-cream: #f6f1e8;
    --dcy-ivory: #fbf7f2;
    --dcy-white: #fffdf9;
    --dcy-chocolate: #2e1b14;
    --dcy-coffee: #513226;
    --dcy-caramel: #c97a2b;
    --dcy-gold: #e0a13b;
    --dcy-terracotta: #b85e3c;
    --dcy-leaf: #6e8b5b;
    --dcy-muted: #76665d;
    --dcy-border: rgba(46, 27, 20, 0.14);
    --dcy-shadow: 0 24px 70px rgba(46, 27, 20, 0.14);
    --dcy-radius-lg: 40px;
    --dcy-radius-md: 26px;
    --dcy-radius-sm: 16px;
    --dcy-serif: Georgia, "Times New Roman", serif;
    --dcy-sans: Montserrat, Poppins, "Helvetica Neue", Arial, sans-serif;

    position: relative;
    overflow: hidden;
    background: var(--dcy-ivory);
    color: var(--dcy-chocolate);
    font-family: var(--dcy-sans);
    font-size: 18px;
    line-height: 1.65;
}

.dcy-home *,
.dcy-home *::before,
.dcy-home *::after {
    box-sizing: border-box;
}

.dcy-home img,
.dcy-home svg {
    display: block;
    max-width: 100%;
}

.dcy-home a:not(.dcy-button) {
    color: inherit;
    text-decoration: none;
}

.dcy-home h1,
.dcy-home h2,
.dcy-home h3,
.dcy-home p,
.dcy-home dl,
.dcy-home dd {
    margin-top: 0;
}

.dcy-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.dcy-section {
    position: relative;
    padding-block: clamp(76px, 9vw, 132px);
}

.dcy-eyebrow {
    margin-bottom: 15px;
    color: var(--dcy-caramel);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.dcy-home h1,
.dcy-home h2 {
    font-family: var(--dcy-serif);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.dcy-home h1 {
    max-width: 760px;
    margin-bottom: 26px;
    font-size: clamp(3.3rem, 7.4vw, 6.8rem);
}

.dcy-home h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.dcy-home h3 {
    margin-bottom: 14px;
    font-family: var(--dcy-serif);
    font-size: clamp(1.65rem, 2.4vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.dcy-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.dcy-button:hover,
.dcy-button:focus-visible {
    transform: translateY(-2px);
}

.dcy-button:focus-visible,
.dcy-home a:focus-visible {
    outline: 3px solid rgba(224, 161, 59, 0.45);
    outline-offset: 4px;
}

.dcy-home .dcy-button--primary {
    background: var(--dcy-chocolate);
    box-shadow: 0 14px 30px rgba(46, 27, 20, 0.18);
    color: var(--dcy-white);
}

.dcy-home .dcy-button--primary:hover,
.dcy-home .dcy-button--primary:focus-visible {
    background: var(--dcy-coffee);
}

.dcy-home .dcy-button--secondary {
    border-color: var(--dcy-border);
    background: rgba(255, 253, 249, 0.72);
    color: var(--dcy-chocolate);
}

.dcy-home .dcy-button--secondary:hover,
.dcy-home .dcy-button--secondary:focus-visible {
    border-color: rgba(46, 27, 20, 0.3);
    background: var(--dcy-white);
}

.dcy-home .dcy-button--light {
    background: var(--dcy-ivory);
    color: var(--dcy-chocolate);
}

.dcy-home .dcy-button--outline-light {
    border-color: rgba(255, 253, 249, 0.42);
    color: var(--dcy-white);
}

.dcy-home .dcy-button--outline-light:hover,
.dcy-home .dcy-button--outline-light:focus-visible {
    background: rgba(255, 253, 249, 0.1);
    border-color: var(--dcy-white);
}

/* Hero */
.dcy-hero {
    position: relative;
    min-height: min(900px, 100svh);
    display: grid;
    align-items: center;
    overflow: hidden;
    padding-block: clamp(70px, 9vw, 124px) clamp(90px, 10vw, 140px);
    background:
        radial-gradient(circle at 82% 18%, rgba(224, 161, 59, 0.22), transparent 30%),
        radial-gradient(circle at 6% 75%, rgba(184, 94, 60, 0.12), transparent 32%),
        linear-gradient(135deg, #fbf7f2 0%, #f4eadc 100%);
}

.dcy-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -250px;
    left: -170px;
    border: 1px solid rgba(201, 122, 43, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 38px rgba(201, 122, 43, 0.045),
        0 0 0 76px rgba(201, 122, 43, 0.025);
}

.dcy-hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    pointer-events: none;
    background-image: radial-gradient(rgba(46, 27, 20, 0.2) 0.6px, transparent 0.7px);
    background-size: 7px 7px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.dcy-hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: clamp(40px, 7vw, 94px);
}

.dcy-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(48px, 8vh, 78px);
}

.dcy-brand__mark {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--dcy-caramel);
    color: var(--dcy-white);
    font-family: var(--dcy-serif);
    font-size: 1.55rem;
    font-style: italic;
    font-weight: 700;
}

.dcy-brand__name {
    font-family: var(--dcy-serif);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.dcy-hero__lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--dcy-muted);
    font-size: clamp(1.06rem, 1.6vw, 1.25rem);
}

.dcy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dcy-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 24px;
    margin-top: 38px;
    color: var(--dcy-coffee);
    font-size: 0.82rem;
    font-weight: 700;
}

.dcy-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dcy-hero__meta span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dcy-gold);
}

.dcy-hero__visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
}

.dcy-plate {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 35%, #fffefb 0%, #f8efe4 50%, #e8d5bd 100%);
    box-shadow:
        inset 0 0 0 18px rgba(255, 255, 255, 0.68),
        inset 0 0 0 22px rgba(46, 27, 20, 0.08),
        0 44px 85px rgba(81, 50, 38, 0.2);
    transform: rotate(-7deg);
}

.dcy-plate::before {
    content: "";
    position: absolute;
    inset: 13%;
    border: 1px dashed rgba(201, 122, 43, 0.25);
    border-radius: 50%;
}

.dcy-plate__shadow {
    position: absolute;
    width: 68%;
    height: 20%;
    left: 12%;
    bottom: 17%;
    border-radius: 50%;
    background: rgba(46, 27, 20, 0.13);
    filter: blur(18px);
}

.dcy-churro {
    position: absolute;
    width: 48%;
    height: 47px;
    border: 4px solid #a95f1f;
    border-radius: 999px;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 7px, transparent 7px 15px),
        linear-gradient(180deg, #e6a247 0%, #c87427 60%, #a95519 100%);
    box-shadow:
        inset 0 5px 7px rgba(255, 235, 186, 0.35),
        0 11px 18px rgba(88, 45, 20, 0.24);
}

.dcy-churro::after {
    content: "";
    position: absolute;
    inset: 8px 10px;
    border-top: 2px dotted rgba(255, 248, 222, 0.55);
}

.dcy-churro--one {
    top: 26%;
    left: 18%;
    transform: rotate(28deg);
}

.dcy-churro--two {
    top: 39%;
    left: 13%;
    transform: rotate(5deg);
}

.dcy-churro--three {
    top: 51%;
    left: 17%;
    transform: rotate(-18deg);
}

.dcy-churro--four {
    top: 63%;
    left: 25%;
    transform: rotate(-36deg);
}

.dcy-cup {
    position: absolute;
    width: 39%;
    height: 30%;
    right: 8%;
    bottom: 13%;
    border-radius: 10px 10px 46% 46%;
    background: linear-gradient(145deg, #fffefb, #e5d2bd);
    box-shadow: 0 16px 28px rgba(46, 27, 20, 0.22);
}

.dcy-cup::before {
    content: "";
    position: absolute;
    width: 112%;
    height: 18%;
    left: -6%;
    bottom: -10%;
    border-radius: 50%;
    background: #e2cfb9;
    box-shadow: 0 5px 0 rgba(46, 27, 20, 0.08);
}

.dcy-cup__coffee {
    position: absolute;
    width: 91%;
    height: 24%;
    top: -4%;
    left: 4.5%;
    border: 4px solid #f7eee4;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #7a4b31 0%, #3b2017 68%);
}

.dcy-cup__handle {
    position: absolute;
    width: 37%;
    height: 52%;
    right: -27%;
    top: 23%;
    border: 12px solid #e6d4c0;
    border-left: 0;
    border-radius: 0 50% 50% 0;
}

.dcy-cup__steam {
    position: absolute;
    width: 26px;
    height: 75px;
    top: -68px;
    border: 4px solid rgba(81, 50, 38, 0.28);
    border-top: 0;
    border-bottom: 0;
    border-radius: 50%;
    transform: rotate(10deg);
}

.dcy-cup__steam--one {
    left: 34%;
}

.dcy-cup__steam--two {
    left: 57%;
    height: 62px;
    top: -55px;
    transform: rotate(-9deg);
}

.dcy-sugar {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff6df;
    box-shadow:
        18px 9px 0 #fff6df,
        34px -5px 0 #fff6df,
        51px 13px 0 #fff6df,
        70px 2px 0 #fff6df;
}

.dcy-sugar--one {
    top: 23%;
    left: 27%;
}

.dcy-sugar--two {
    top: 50%;
    left: 34%;
    transform: rotate(24deg);
}

.dcy-sugar--three {
    top: 68%;
    left: 27%;
    transform: rotate(-18deg);
}

.dcy-hero__seal {
    position: absolute;
    width: 142px;
    height: 142px;
    right: -10px;
    top: 70px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--dcy-chocolate);
    box-shadow: 0 18px 34px rgba(46, 27, 20, 0.23);
    color: var(--dcy-white);
    text-align: center;
    transform: rotate(8deg);
}

.dcy-hero__seal::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px dashed rgba(255, 253, 249, 0.45);
    border-radius: 50%;
}

.dcy-hero__seal span {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dcy-hero__seal strong {
    font-family: var(--dcy-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.dcy-hero__scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--dcy-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

/* Section heading */
.dcy-section-heading {
    max-width: 780px;
    margin-bottom: 52px;
}

.dcy-section-heading > p:last-child {
    max-width: 690px;
    margin-bottom: 0;
    color: var(--dcy-muted);
}

/* Specialties */
.dcy-specialties {
    background: var(--dcy-ivory);
}

.dcy-specialties__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.dcy-specialty-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--dcy-border);
    border-radius: var(--dcy-radius-md);
    background: var(--dcy-white);
    box-shadow: 0 15px 42px rgba(46, 27, 20, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.dcy-specialty-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -80px;
    top: -90px;
    border-radius: 50%;
    background: rgba(224, 161, 59, 0.12);
}

.dcy-specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dcy-shadow);
}

.dcy-specialty-card__number {
    position: absolute;
    right: 28px;
    top: 27px;
    color: rgba(46, 27, 20, 0.22);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.dcy-specialty-card__icon {
    min-height: 98px;
    display: flex;
    align-items: center;
    margin-bottom: 27px;
}

.dcy-specialty-card > p:not(.dcy-specialty-card__number) {
    margin-bottom: 26px;
    color: var(--dcy-muted);
}

.dcy-specialty-card > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--dcy-border);
    color: var(--dcy-caramel);
    font-size: 0.84rem;
    font-weight: 700;
}

.dcy-price-list {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
}

.dcy-price-list > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--dcy-border);
}

.dcy-price-list dt,
.dcy-price-list dd {
    font-size: 0.82rem;
}

.dcy-price-list dd {
    margin-bottom: 0;
    color: var(--dcy-coffee);
    font-weight: 700;
}

.dcy-mini-churro {
    display: block;
    width: 92px;
    height: 25px;
    border: 2px solid #a95f1f;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, #d98934 0 9px, #e7a34c 9px 16px);
    box-shadow: 0 8px 14px rgba(81, 50, 38, 0.18);
    transform: rotate(22deg);
}

.dcy-mini-churro--offset {
    margin-left: -20px;
    transform: translateY(22px) rotate(-13deg);
}

.dcy-mini-sun {
    position: relative;
    width: 74px;
    height: 74px;
    border: 15px solid var(--dcy-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(224, 161, 59, 0.15);
}

.dcy-mini-sun::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: var(--dcy-ivory);
}

.dcy-mini-cup {
    position: relative;
    width: 76px;
    height: 58px;
    border-radius: 8px 8px 28px 28px;
    background: var(--dcy-coffee);
    box-shadow: 0 9px 0 -2px rgba(81, 50, 38, 0.18);
}

.dcy-mini-cup::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 32px;
    right: -20px;
    top: 12px;
    border: 8px solid var(--dcy-coffee);
    border-left: 0;
    border-radius: 0 50% 50% 0;
}

.dcy-mini-cup::after {
    content: "";
    position: absolute;
    width: 23px;
    height: 40px;
    left: 27px;
    top: -35px;
    border-left: 3px solid rgba(81, 50, 38, 0.35);
    border-radius: 50%;
    transform: rotate(12deg);
}

/* Menu preview */
.dcy-menu-preview {
    background: var(--dcy-chocolate);
    color: var(--dcy-white);
}

.dcy-menu-preview::before {
    content: "+";
    position: absolute;
    right: 4vw;
    top: 12%;
    color: rgba(255, 253, 249, 0.04);
    font-family: var(--dcy-serif);
    font-size: clamp(13rem, 28vw, 28rem);
    line-height: 0.7;
}

.dcy-menu-preview__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(50px, 9vw, 120px);
}

.dcy-menu-preview__intro {
    position: sticky;
    top: 100px;
    align-self: start;
}

.dcy-menu-preview__intro > p:not(.dcy-eyebrow) {
    max-width: 470px;
    color: rgba(255, 253, 249, 0.72);
}

.dcy-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 253, 249, 0.42);
    color: var(--dcy-gold);
    font-size: 0.9rem;
    font-weight: 700;
}

.dcy-menu-preview__items {
    display: grid;
}

.dcy-menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    padding-block: 34px;
    border-bottom: 1px solid rgba(255, 253, 249, 0.14);
}

.dcy-menu-item:first-child {
    border-top: 1px solid rgba(255, 253, 249, 0.14);
}

.dcy-menu-item h3 {
    margin-bottom: 9px;
}

.dcy-menu-item p {
    max-width: 550px;
    margin-bottom: 0;
    color: rgba(255, 253, 249, 0.67);
    font-size: 0.92rem;
}

.dcy-menu-item > strong {
    align-self: center;
    color: var(--dcy-gold);
    font-family: var(--dcy-serif);
    font-size: 1.8rem;
    font-weight: 500;
}

.dcy-menu-item__tag {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--dcy-gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* Story */
.dcy-story {
    background: var(--dcy-cream);
}

.dcy-story__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(48px, 9vw, 120px);
}

.dcy-story__art {
    position: relative;
    width: min(480px, 100%);
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, #fffdf9 0 42%, rgba(255, 253, 249, 0.36) 42% 100%);
    text-align: center;
}

.dcy-story__ring {
    position: absolute;
    border: 1px solid rgba(201, 122, 43, 0.3);
    border-radius: 50%;
}

.dcy-story__ring--one {
    inset: 6%;
}

.dcy-story__ring--two {
    inset: 16%;
    border-style: dashed;
}

.dcy-story__ring--three {
    inset: 29%;
}

.dcy-story__years {
    position: relative;
    z-index: 1;
    color: var(--dcy-caramel);
    font-family: var(--dcy-serif);
    font-size: clamp(5rem, 12vw, 8rem);
    letter-spacing: -0.08em;
    line-height: 0.8;
}

.dcy-story__caption {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: var(--dcy-coffee);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.dcy-story__copy > p:not(.dcy-eyebrow) {
    color: var(--dcy-muted);
}

.dcy-story__copy .dcy-button {
    margin-top: 12px;
}

/* Visit */
.dcy-visit {
    padding-top: 0;
    background: var(--dcy-cream);
}

.dcy-visit__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 36px;
    overflow: hidden;
    padding: clamp(42px, 7vw, 78px);
    border-radius: var(--dcy-radius-lg);
    background:
        radial-gradient(circle at 95% 5%, rgba(224, 161, 59, 0.34), transparent 28%),
        linear-gradient(135deg, #513226 0%, #2e1b14 70%);
    box-shadow: var(--dcy-shadow);
    color: var(--dcy-white);
}

.dcy-visit__card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: 19%;
    bottom: -140px;
    border: 25px solid rgba(255, 253, 249, 0.05);
    border-radius: 50%;
}

.dcy-visit__copy,
.dcy-visit__actions,
.dcy-visit__contact {
    position: relative;
    z-index: 1;
}

.dcy-visit__copy {
    max-width: 700px;
}

.dcy-visit__copy h2 {
    max-width: 760px;
}

.dcy-visit__copy > p:last-child {
    max-width: 610px;
    margin-bottom: 0;
    color: rgba(255, 253, 249, 0.72);
}

.dcy-visit__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dcy-visit__contact {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 253, 249, 0.16);
    color: rgba(255, 253, 249, 0.76);
    font-size: 0.82rem;
    font-weight: 700;
}

.dcy-visit__contact a:hover,
.dcy-visit__contact a:focus-visible {
    color: var(--dcy-gold);
}

/* Progressive reveal */
.dcy-home.dcy-js-ready .dcy-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.dcy-home.dcy-js-ready .dcy-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .dcy-hero {
        min-height: auto;
    }

    .dcy-hero__layout,
    .dcy-story__layout {
        grid-template-columns: 1fr;
    }

    .dcy-hero__visual {
        min-height: 520px;
    }

    .dcy-plate {
        width: min(500px, 82vw);
    }

    .dcy-specialties__grid {
        grid-template-columns: 1fr;
    }

    .dcy-specialty-card {
        min-height: 0;
    }

    .dcy-menu-preview__layout {
        grid-template-columns: 1fr;
    }

    .dcy-menu-preview__intro {
        position: static;
    }

    .dcy-story__art {
        justify-self: center;
    }

    .dcy-visit__card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .dcy-visit__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 680px) {
    .dcy-home {
        font-size: 17px;
    }

    .dcy-shell {
        width: min(100% - 28px, 1180px);
    }

    .dcy-hero {
        padding-top: 48px;
    }

    .dcy-brand {
        margin-bottom: 48px;
    }

    .dcy-brand__mark {
        width: 42px;
        height: 42px;
        font-size: 1.35rem;
    }

    .dcy-brand__name {
        font-size: 1.25rem;
    }

    .dcy-home h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .dcy-home h2 {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .dcy-actions,
    .dcy-actions .dcy-button,
    .dcy-visit__actions,
    .dcy-visit__actions .dcy-button {
        width: 100%;
    }

    .dcy-hero__meta {
        display: grid;
    }

    .dcy-hero__visual {
        min-height: 390px;
    }

    .dcy-plate {
        width: min(390px, 88vw);
    }

    .dcy-churro {
        height: 37px;
    }

    .dcy-hero__seal {
        width: 112px;
        height: 112px;
        right: -3px;
        top: 35px;
    }

    .dcy-hero__seal strong {
        font-size: 1.18rem;
    }

    .dcy-hero__scroll {
        display: none;
    }

    .dcy-specialty-card {
        padding: 28px;
    }

    .dcy-menu-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dcy-menu-item > strong {
        justify-self: start;
    }

    .dcy-story__art {
        width: min(360px, 88vw);
    }

    .dcy-visit__card {
        width: min(100% - 20px, 1180px);
        padding: 38px 24px;
        border-radius: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dcy-home *,
    .dcy-home *::before,
    .dcy-home *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }

    .dcy-home.dcy-js-ready .dcy-reveal {
        opacity: 1;
        transform: none;
    }
}
