:root {
  --ink: #252525;
  --muted: #777;
  --soft: #a9a9a9;
  --line: #d7d7d5;
  --paper: #f4f4f3;
  --panel: #c9c6c5;
  --panel-2: #ecebec;
  --panel-3: #e3e4e7;
  --ratio-content: 69.444vw;
  --event-card: 19vw;
  --event-gap: .833vw;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, Pretendard, "Noto Sans KR", Arial, sans-serif; overflow-x: clip; }
body, button, a { -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 0; left: -9999px; padding: 10px 14px; background: #fff; border: 1px solid var(--ink); }
.skip-link:focus { top: 8px; left: 8px; }
.aw-ratio-container { width: var(--ratio-content); margin-inline: auto; }

.aw-header { position: relative; z-index: 50; height: 76px; background: #fff; }
.aw-header-row { height: 76px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-inline: 3.472vw; }
.aw-brand { width: 92px; min-width: 92px; height: 68px; display: flex; align-items: center; }
.aw-brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.aw-header .aw-wordmark { width: 92px; min-width: 92px; height: 68px; display: block; overflow: hidden; background: url('../assets/anywedding-header-logo.png') left center / contain no-repeat; color: transparent; font-size: 0; }
.aw-desktop-nav { display: flex; align-items: center; justify-content: center; gap: 2.222vw; font-size: 12px; }
.aw-desktop-nav a { color: var(--muted); padding: 12px 2px; }
.aw-desktop-nav a[aria-current="page"], .aw-desktop-nav a:hover { color: var(--ink); }
.aw-menu-toggle { display: none; justify-self: end; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; }
.aw-menu-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--ink); }
.aw-mobile-panel { position: absolute; inset: 76px 0 auto; padding: 18px 24px 22px; background: #fff; box-shadow: 0 14px 28px rgb(0 0 0 / .08); }
.aw-mobile-panel a { display: block; padding: 13px 0; border-bottom: 1px solid #ececec; font-size: 14px; }

.aw-hero { background: #fff; padding-top: 20px; }
.aw-marquee { width: 100%; height: 56px; overflow: hidden; background: #b7b4b3; color: #fff; }
.aw-marquee-track { display: flex; width: max-content; min-width: 200%; height: 100%; will-change: transform; animation: marquee 22s linear infinite; }
.aw-marquee-group { width: var(--ratio-content); flex: 0 0 var(--ratio-content); display: flex; align-items: center; justify-content: space-between; padding-inline: 1.2vw; font-weight: 800; font-size: clamp(12px, 1.25vw, 20px); letter-spacing: .02em; }
@keyframes marquee { to { transform: translateX(calc(var(--ratio-content) * -1)); } }
.aw-hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 34.722vw; }
.aw-hero-copy { display: grid; place-content: center; padding: 6.944vw; text-align: center; background: #c9c6c5; }
.aw-hero-copy h1 { margin: 0; font-size: clamp(22px, 1.944vw, 38px); line-height: 1.45; letter-spacing: -.045em; }
.aw-hero-copy p { margin: 20px 0 0; color: var(--muted); font-size: clamp(12px, .972vw, 16px); }
.aw-hero-carousel { position: relative; min-width: 0; background: #fff; outline: none; }
.aw-hero-viewport { height: 100%; overflow: hidden; }
.aw-hero-track { display: flex; width: 100%; height: 100%; transition: transform .62s var(--ease); will-change: transform; }
.aw-hero-slide { min-width: 100%; padding: 2.7vw 3.5vw 2.2vw; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.aw-product-label { color: var(--muted); font-size: clamp(10px, .833vw, 14px); }
.aw-hero-slide h2 { margin: 1.111vw 0; font-size: clamp(18px, 1.528vw, 28px); }
.aw-hero-slide img { width: 16.667vw; height: 16.667vw; min-width: 180px; min-height: 180px; object-fit: cover; filter: grayscale(1); }
.aw-hero-slide p { max-width: 21vw; margin: 1.111vw 0 1.35vw; color: var(--muted); font-size: clamp(11px, .972vw, 15px); line-height: 1.55; }
.aw-circle-arrow { position: absolute; z-index: 4; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid rgb(37 37 37 / .32); border-radius: 50%; background: rgb(255 255 255 / .9); cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease; }
.aw-circle-arrow:hover { transform: scale(1.06); background: var(--ink); color: #fff; }
.aw-circle-arrow:focus-visible, .aw-text-arrow:focus-visible, .aw-carousel-dot:focus-visible, .aw-button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.aw-hero-prev { left: 1.2vw; top: 50%; transform: translateY(-50%); }
.aw-hero-next { right: 1.2vw; top: 50%; transform: translateY(-50%); }
.aw-hero-prev:hover, .aw-hero-next:hover { transform: translateY(-50%) scale(1.06); }
.aw-carousel-dots { position: absolute; z-index: 5; left: 50%; bottom: 1.6vw; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; gap: 6px; }
.aw-carousel-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: var(--line); cursor: pointer; transition: width .38s var(--ease), transform .38s var(--ease), background-color .38s var(--ease); }
.aw-carousel-dot[aria-current="true"] { width: 28px; background: var(--ink); transform: scaleY(.62); }

.aw-event-section { width: 100vw; min-height: 520px; padding: 48px 0 36px; overflow: hidden; background: var(--paper); }
.aw-section-heading { text-align: center; }
.aw-section-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(24px, 1.806vw, 34px); line-height: 1.15; }
.aw-section-heading p { margin: 8px 0 0; color: var(--muted); font-size: clamp(11px, .833vw, 14px); }
.aw-event-carousel { position: relative; width: 100vw; height: 420px; margin-top: 26px; outline: none; }
.aw-event-viewport { width: 100%; height: 100%; overflow: hidden; }
.aw-event-track { display: flex; align-items: center; gap: var(--event-gap); width: max-content; height: 100%; padding-block: 24px; will-change: transform; transition: transform .58s var(--ease); }
.aw-event-card { width: var(--event-card); height: calc(var(--event-card) * 1.375); flex: 0 0 var(--event-card); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 1.25vw; padding: 1.9vw; overflow: hidden; background: var(--panel); text-align: center; transform: scale(.88); opacity: .72; transition: transform .58s var(--ease), opacity .58s var(--ease), box-shadow .58s var(--ease); transform-origin: center; }
.aw-event-card.is-active { transform: scale(1.16); opacity: 1; box-shadow: 0 18px 42px rgb(0 0 0 / .08); }
.aw-event-number { font-size: clamp(13px, 1.1vw, 18px); font-weight: 800; }
.aw-event-card small { color: var(--muted); font-size: clamp(9px, .79vw, 12px); }
.aw-event-icon { width: calc(var(--event-card) * .433); height: calc(var(--event-card) * .433); display: grid; place-items: center; border: .158vw solid var(--ink); border-radius: 50%; }
.aw-event-icon img { width: 54%; height: 54%; object-fit: contain; }
.aw-event-card h3 { width: 100%; margin: 0; font-size: clamp(15px, 1.35vw, 22px); line-height: 1.35; }
.aw-event-card p { margin: 0; color: var(--muted); font-size: clamp(10px, .87vw, 13px); }
.aw-event-prev { left: 1vw; top: 50%; transform: translateY(-50%); }
.aw-event-next { right: 1vw; top: 50%; transform: translateY(-50%); }
.aw-event-prev:hover, .aw-event-next:hover { transform: translateY(-50%) scale(1.06); }
.aw-event-dots { bottom: 4px; }

.aw-services { padding: 58px 0 72px; background: var(--paper); }
.aw-services .aw-section-heading h2 { font-family: inherit; color: var(--muted); font-size: clamp(26px, 2.083vw, 38px); font-weight: 600; }
.aw-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.389vw; margin-top: 32px; }
.aw-service-card { min-width: 0; text-align: center; }
.aw-service-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; filter: grayscale(1); transition: filter .45s ease, transform .45s ease; }
.aw-service-card:hover img { filter: grayscale(.25); transform: scale(.99); }
.aw-service-card strong { display: block; margin-top: 12px; font-size: clamp(12px, .972vw, 16px); font-weight: 500; }
.aw-service-card span { display: block; color: var(--muted); font-size: clamp(11px, .833vw, 14px); }
.aw-service-meta { min-height: 49px; display: flex !important; flex-direction: column; align-items: center; gap: 7px; margin-top: 7px; }
.aw-service-price { margin: 0; }
.aw-product-badge { width: max-content; min-width: 42px; padding: 3px 8px; border: 1px solid #c9c5c2; background: #fff; color: #6f6b68 !important; font-size: 9px !important; font-weight: 700; line-height: 1; letter-spacing: .08em; }
.aw-product-badge-hot { border-color: #d85f62; background: #d85f62; color: #fff !important; }
.aw-product-badge-best { border-color: #d3cbc6; background: #f6f2ef; color: #9a6f70 !important; }

.aw-poster-section { padding: 40px 0 48px; background: var(--panel-2); }
.aw-purchase-actions { display: flex; justify-content: center; gap: 12.5vw; margin-bottom: 32px; }
.aw-button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 4px; font-size: clamp(12px, 1.111vw, 16px); transition: filter .25s ease, transform .25s ease; }
.aw-button:hover { filter: brightness(.94); transform: translateY(-2px); }
.aw-button-store { min-width: 16.875vw; background: #5fa836; color: #fff; }
.aw-button-chat { min-width: 14.097vw; border: 1px solid #777574; background: #d7a836; color: #fff; }
.aw-poster-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.aw-poster-head h2 { margin: 0; font-size: clamp(22px, 1.944vw, 34px); }
.aw-poster-controls { display: flex; gap: 10px; }
.aw-text-arrow { width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; font-size: 22px; }
.aw-poster-carousel { position: relative; overflow: hidden; outline: none; }
.aw-poster-track { --poster-gap: clamp(12px, 1.389vw, 22px); display: flex; gap: var(--poster-gap); align-items: stretch; }
.aw-poster-slide { flex: 0 0 calc((100% - (var(--poster-gap) + var(--poster-gap))) / 3); min-width: 0; }
.aw-poster-pair { width: 100%; aspect-ratio: 306.667 / 310; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--poster-gap); overflow: hidden; background: transparent; }
.aw-poster-pair img { width: 100%; height: 100%; min-width: 0; object-fit: cover; filter: grayscale(1); }
.aw-poster-option { height: clamp(96px, 8.333vw, 148px); display: flex; flex-direction: column; gap: clamp(12px, 1.25vw, 20px); align-items: center; padding: clamp(14px, 1.389vw, 24px); background: #d4cfcd; }
.aw-poster-option strong { font-size: clamp(11px, .868vw, 14px); }
.aw-poster-option span { width: 100%; height: clamp(28px, 2.361vw, 42px); display: grid; place-items: center; background: #fff; font-size: clamp(10px, .705vw, 12px); }

.aw-order { padding: 5.556vw 0; background: var(--panel-3); }
.aw-order-grid { display: grid; grid-template-columns: .72fr 1fr; align-items: center; gap: 2.083vw; }
.aw-order-image { margin: 0; }
.aw-order-image img { width: 100%; aspect-ratio: 1.5 / 1; object-fit: cover; filter: grayscale(1); }
.aw-order-copy h2 { margin: 0 0 1.2vw; font-size: clamp(20px, 1.57vw, 30px); }
.aw-order-copy > p { color: var(--muted); font-size: clamp(10px, .785vw, 13px); }
.aw-order-copy ol { margin: 1.2vw 0 1.5vw; padding: 0; list-style: none; color: var(--muted); font-size: clamp(11px, .845vw, 14px); line-height: 1.8; }
.aw-button-apply { background: #777574; color: #fff; }

.aw-footer { min-height: 220px; display: grid; place-items: center; padding: 36px 0; background: #fff; text-align: center; }
.aw-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 16px; }
.aw-socials a { width: 44px; height: 44px; display: grid; place-items: center; }
.aw-socials img { width: 22px; height: 22px; }
.aw-footer strong { font-size: 14px; }
.aw-footer p { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.aw-footer nav { display: flex; justify-content: center; gap: 16px; margin-top: 12px; color: var(--muted); font-size: 11px; }
.aw-footer .aw-business-info { color: var(--soft); font-size: 11px; line-height: 1.7; }

@media (max-width: 900px) {
  :root { --ratio-content: calc(100vw - 48px); --event-card: 38vw; --event-gap: 2vw; }
  .aw-header-row { padding-inline: 24px; }
  .aw-brand, .aw-header .aw-wordmark { width: 82px; min-width: 82px; }
  .aw-desktop-nav { display: none; }
  .aw-menu-toggle { display: block; grid-column: 3; }
  .aw-hero { padding-top: 12px; }
  .aw-marquee-group { padding-inline: 18px; }
  .aw-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .aw-hero-copy { min-height: 42vw; padding: 8vw; }
  .aw-hero-carousel { min-height: 72vw; }
  .aw-hero-slide { padding: 5vw 8vw 7vw; }
  .aw-hero-slide img { width: 30vw; height: 30vw; }
  .aw-hero-slide p { max-width: 52vw; }
  .aw-carousel-dots { bottom: 18px; }
  .aw-event-section { min-height: 560px; }
  .aw-event-carousel { height: 450px; }
  .aw-event-card { gap: 2.4vw; padding: 3.8vw; }
  .aw-event-card.is-active { transform: scale(1.08); }
  .aw-event-icon { border-width: 2px; }
  .aw-service-grid { gap: 20px; }
  .aw-purchase-actions { gap: 4vw; }
  .aw-button-store, .aw-button-chat { min-width: 34vw; }
  .aw-poster-track { --poster-gap: 20px; }
  .aw-poster-slide { flex-basis: calc((100% - var(--poster-gap)) / 2); }
  .aw-poster-option { height: 100px; padding: 16px; gap: 12px; }
  .aw-order { padding: 56px 0; }
  .aw-order-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  :root { --ratio-content: calc(100vw - 32px); --event-card: 72vw; --event-gap: 5vw; }
  .aw-header-row { padding-inline: 16px; grid-template-columns: 1fr auto; }
  .aw-brand, .aw-header .aw-wordmark { width: 72px; min-width: 72px; height: 62px; }
  .aw-menu-toggle { grid-column: 2; }
  .aw-marquee { height: 48px; }
  .aw-marquee-group { padding-inline: 12px; }
  .aw-hero-copy { min-height: 68vw; padding: 12vw 8vw; }
  .aw-hero-copy h1 { font-size: clamp(21px, 6.2vw, 29px); }
  .aw-hero-carousel { min-height: 132vw; }
  .aw-hero-slide { justify-content: flex-start; padding: 11vw 12vw 16vw; }
  .aw-hero-slide h2 { margin: 14px 0; }
  .aw-hero-slide img { width: 58vw; height: 58vw; min-width: 0; min-height: 0; }
  .aw-hero-slide p { max-width: 68vw; margin-top: 18px; }
  .aw-hero-prev { left: 12px; }
  .aw-hero-next { right: 12px; }
  .aw-event-section { min-height: 590px; padding-top: 40px; }
  .aw-event-carousel { height: 480px; }
  .aw-event-card { height: calc(var(--event-card) * 1.34); gap: 4.6vw; padding: 6vw; }
  .aw-event-card.is-active { transform: scale(1); }
  .aw-event-prev { left: 8px; }
  .aw-event-next { right: 8px; }
  .aw-services { padding: 48px 0; }
  .aw-service-grid { grid-template-columns: 1fr; gap: 38px; }
  .aw-purchase-actions { flex-direction: column; gap: 10px; }
  .aw-button-store, .aw-button-chat { width: 100%; min-width: 0; }
  .aw-poster-head { align-items: flex-end; }
  .aw-poster-track { --poster-gap: 16px; }
  .aw-poster-slide { flex-basis: 100%; }
  .aw-poster-option { height: 96px; }
  .aw-order-grid { grid-template-columns: 1fr; gap: 28px; }
  .aw-order-copy { text-align: left; }
  .aw-order-copy h2 { margin-bottom: 16px; }
  .aw-order-copy ol { margin: 16px 0 20px; }
  .aw-footer p { max-width: 80vw; margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .aw-marquee-track { animation: none; }
}
