/* ============================================
   HUNTER TIME CO — Dark Ocean Rainforest
   ============================================ */

:root {
  --abyss: #060f15;
  --ocean: #0b1f2a;
  --deep: #102a36;
  --forest: #15302b;
  --moss: #2d4a3a;
  --kelp: #4a6b5d;
  --brass: #b08d57;
  --brass-bright: #d4ae74;
  --bone: #e8e4d9;
  --bone-dim: #b9b4a5;
  --rust: #8a4a2f;
  --hairline: rgba(232, 228, 217, 0.12);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--abyss); color: var(--bone); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--brass); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--brass-bright); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(6, 15, 21, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--hairline); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 0; min-height: 110px; }
.brand { display: inline-flex; align-items: center; height: 90px; }
.brand img { height: 90px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--bone); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; position: relative; }
.nav-links a::after { content: ""; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: var(--brass); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--brass); }
.nav-toggle { display: none; background: none; border: none; color: var(--bone); font-size: 1.5rem; cursor: pointer; }

/* HERO PHOTO (HOME) */
.hero-photo { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--abyss); }
.hero-photo .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg-layer { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; z-index: 0; }
.hero-bg-layer.active { opacity: 1; }
.hero-photo .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,15,21,0.55) 0%, rgba(6,15,21,0.15) 35%, rgba(6,15,21,0.85) 100%); z-index: 2; }
.hero-photo .container { position: relative; z-index: 2; padding-bottom: 6rem; padding-top: 12rem; }
.hero-photo h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); margin-bottom: 1.5rem; letter-spacing: -0.02em; max-width: 18ch; }
.hero-photo h1 em { font-style: italic; color: var(--brass); }
.hero-photo p { font-size: 1.15rem; color: var(--bone); max-width: 32rem; margin-bottom: 2.25rem; }

/* BUTTONS */
.btn { display: inline-block; padding: 1rem 2.25rem; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; border: 1px solid var(--brass); background: transparent; color: var(--brass); cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; }
.btn:hover { background: var(--brass); color: var(--abyss); }
.btn-solid { background: var(--brass); color: var(--abyss); }
.btn-solid:hover { background: var(--brass-bright); border-color: var(--brass-bright); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-buy { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1.15rem 2.5rem; font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; background: var(--brass); color: var(--abyss); border: 1px solid var(--brass); cursor: pointer; transition: all 0.3s ease; text-decoration: none; }
.btn-buy:hover { background: var(--brass-bright); border-color: var(--brass-bright); color: var(--abyss); transform: translateY(-1px); }
.btn-buy svg { width: 16px; height: 16px; }

/* SECTIONS */
section { padding: 7rem 0; position: relative; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
.section-head p { color: var(--bone-dim); max-width: 38rem; margin: 1rem auto 0; }

/* FEATURED CARDS (HOME) */
.featured { background: var(--ocean); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.watch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.watch-card { background: var(--deep); border: 1px solid var(--hairline); padding: 2.5rem 2rem; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.watch-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--brass), transparent); opacity: 0; transition: opacity 0.4s ease; }
.watch-card:hover { transform: translateY(-6px); border-color: rgba(176, 141, 87, 0.4); }
.watch-card:hover::before { opacity: 1; }
.watch-img-wrap { margin: 0 auto 1.75rem; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; position: relative; }
.watch-img-wrap::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(176, 141, 87, 0.15), transparent 65%); filter: blur(20px); z-index: 0; }
.watch-img-wrap img { position: relative; z-index: 1; }
.watch-card h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.watch-card .meta { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 1rem; }
.watch-card .price { font-family: var(--serif); font-size: 1.35rem; color: var(--brass); margin-bottom: 1.5rem; }
.watch-card p { color: var(--bone-dim); font-size: 0.95rem; margin-bottom: 1.5rem; }

/* PROMISE STRIP */
.promise { background: var(--abyss); padding: 4rem 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.promise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; text-align: center; }
.promise-item { padding: 1rem; }
.promise-item .icon { width: 38px; height: 38px; margin: 0 auto 1rem; color: var(--brass); }
.promise-item h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); margin-bottom: 0.5rem; font-weight: 600; }
.promise-item p { font-size: 0.88rem; color: var(--bone-dim); }

/* STORY TEASER */
.story-teaser { background: linear-gradient(180deg, var(--forest) 0%, var(--ocean) 100%); position: relative; }
.story-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-teaser h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.story-teaser p { color: var(--bone-dim); font-size: 1.05rem; margin-bottom: 1.25rem; }
.story-visual { aspect-ratio: 4 / 5; background: linear-gradient(135deg, rgba(45, 74, 58, 0.6), rgba(11, 31, 42, 0.9)); border: 1px solid var(--hairline); position: relative; overflow: hidden; }
.story-visual.photo { background-size: cover; background-position: center; }

/* PAGE HEADER (interior pages) */
.page-header { padding: 15rem 0 5rem; background: radial-gradient(ellipse at 50% 0%, rgba(45, 74, 58, 0.4), transparent 70%), linear-gradient(180deg, var(--abyss) 0%, var(--ocean) 100%); text-align: center; border-bottom: 1px solid var(--hairline); position: relative; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-header-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,15,21,0.55) 0%, rgba(6,15,21,0.4) 40%, rgba(6,15,21,0.95) 100%); }
.page-header > .container { position: relative; z-index: 2; }
.page-header h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); margin-bottom: 1rem; }
.page-header p { color: var(--bone-dim); font-size: 1.05rem; max-width: 36rem; margin: 0 auto; }

/* EDITORIAL PHOTO (about) */
.editorial-photo { width: 100%; height: 65vh; min-height: 420px; max-height: 720px; overflow: hidden; position: relative; }
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.editorial-photo .caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem; background: linear-gradient(180deg, transparent 0%, rgba(6,15,21,0.85) 100%); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); text-align: center; }

/* SHOP — TRUST STRIP */
.trust-strip { background: var(--abyss); padding: 1rem 0; border-bottom: 1px solid var(--hairline); }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-dim); }
.trust-strip-inner span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-strip-inner span::before { content: "✓"; color: var(--brass); font-size: 0.9rem; }

/* SHOP — MTO BANNER */
.mto-banner { background: linear-gradient(180deg, var(--forest) 0%, var(--ocean) 100%); padding: 2.5rem 0; border-bottom: 1px solid var(--hairline); }
.mto-banner-inner { display: flex; gap: 2rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.mto-banner-text h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.mto-banner-text p { color: var(--bone-dim); font-size: 0.95rem; max-width: 38rem; }

/* SHOP — PRODUCT */
.product { padding: 6rem 0; border-bottom: 1px solid var(--hairline); }
.product:nth-child(even) { background: var(--ocean); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.product:nth-child(even) .product-grid { direction: rtl; }
.product:nth-child(even) .product-info { direction: ltr; }
.product-visual { padding: 0; background: var(--abyss); overflow: hidden; position: relative; border: 1px solid var(--hairline); }
.product-visual img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.product-info .eyebrow { margin-bottom: 1rem; }
.product-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.product-info .price { font-family: var(--serif); font-size: 1.6rem; color: var(--brass); margin-bottom: 1.5rem; }
.product-info p { color: var(--bone-dim); margin-bottom: 1.5rem; font-size: 1.02rem; }

/* SPEC LIST */
.spec-list { list-style: none; margin: 1.5rem 0 2rem; border-top: 1px solid var(--hairline); }
.spec-list li { display: flex; justify-content: space-between; padding: 0.85rem 0; border-bottom: 1px solid var(--hairline); font-size: 0.92rem; }
.spec-list .spec-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-dim); }
.spec-list .spec-value { color: var(--bone); }

/* PHOTO COMING SOON BANNER */
.photo-banner { position: absolute; inset: auto 0 0 0; z-index: 5; padding: 0.9rem 1.5rem; background: linear-gradient(180deg, rgba(6,15,21,0) 0%, rgba(6,15,21,0.85) 30%, rgba(6,15,21,0.95) 100%); color: var(--bone); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; text-align: center; display: none; pointer-events: none; }
.photo-banner::before { content: ""; display: inline-block; width: 6px; height: 6px; background: var(--brass); border-radius: 50%; margin-right: 0.85rem; vertical-align: middle; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.product-visual.no-photo .photo-banner { display: block; }
.product-visual.no-photo img { filter: brightness(0.7) saturate(0.85); transition: filter 0.3s ease; }

/* VARIANT PICKER */
.variant-picker { margin: 1.75rem 0 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--hairline); }
.variant-group { margin-bottom: 1.5rem; }
.variant-group:last-child { margin-bottom: 0; }
.variant-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 0.85rem; display: flex; gap: 0.65rem; align-items: center; flex-wrap: wrap; }
.variant-label .selected-name { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0.02em; font-size: 1rem; color: var(--bone); }
.swatches { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.swatch { width: 56px; height: 56px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; position: relative; transition: all 0.25s ease; padding: 0; background: none; outline: none; }
.swatch::before { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--swatch-color, #0b1f2a); border: 1px solid rgba(232, 228, 217, 0.15); box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6), inset 0 -1px 4px rgba(232, 228, 217, 0.08); }
.swatch:hover { border-color: rgba(176, 141, 87, 0.5); }
.swatch[aria-pressed="true"] { border-color: var(--brass); }
.swatch[aria-pressed="true"]::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 1px solid rgba(176, 141, 87, 0.3); }

/* OPTION PILLS */
.option-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.option-pill { padding: 0.7rem 1.2rem; background: transparent; border: 1px solid var(--hairline); color: var(--bone-dim); font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; transition: all 0.2s ease; }
.option-pill:hover { color: var(--bone); border-color: rgba(176, 141, 87, 0.5); }
.option-pill[aria-pressed="true"] { background: rgba(176, 141, 87, 0.08); border-color: var(--brass); color: var(--brass); }

/* COMBO SUMMARY */
.combo-summary { margin-top: 1rem; padding: 0.85rem 1rem; background: var(--abyss); border: 1px solid var(--hairline); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--bone-dim); }
.combo-summary strong { color: var(--brass); font-weight: 500; margin-left: 0.4rem; }

/* PRODUCTION NOTICE */
.production-notice { margin: 1.25rem 0 1.5rem; padding: 1rem 1.25rem; background: rgba(176, 141, 87, 0.06); border: 1px solid rgba(176, 141, 87, 0.25); border-left: 3px solid var(--brass); display: flex; gap: 0.85rem; align-items: flex-start; }
.production-notice svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--brass); margin-top: 2px; }
.production-notice .notice-body { font-size: 0.88rem; color: var(--bone-dim); line-height: 1.5; }
.production-notice .notice-body strong { color: var(--bone); font-weight: 500; }

/* PAY METHODS */
.pay-methods { margin-top: 1.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.25rem; border-top: 1px solid var(--hairline); }
.pay-methods .label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-dim); }
.pay-methods .chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pay-methods .chip { padding: 0.3rem 0.7rem; border: 1px solid var(--hairline); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--bone); background: var(--abyss); }

/* SUPPORT PAGE */
.support-section { padding: 5rem 0; border-bottom: 1px solid var(--hairline); }
.support-section:nth-child(odd) { background: var(--ocean); }
.support-section .container { max-width: 880px; }
.support-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
.support-section .lead { color: var(--bone-dim); margin-bottom: 2.5rem; font-size: 1.05rem; }
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.support-card { padding: 1.5rem; background: var(--deep); border: 1px solid var(--hairline); }
.support-card h3 { font-size: 1.15rem; margin-bottom: 0.65rem; color: var(--bone); }
.support-card p { color: var(--bone-dim); font-size: 0.93rem; line-height: 1.55; }
.support-card .num { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.65rem; }

/* ABOUT — STORY */
.story-section { padding: 6rem 0; }
.story-block { max-width: 720px; margin: 0 auto; }
.story-block .lead { font-family: var(--serif); font-size: 1.6rem; color: var(--bone); font-style: italic; line-height: 1.5; margin-bottom: 2.5rem; padding-left: 1.5rem; border-left: 2px solid var(--brass); }
.story-block p { color: var(--bone-dim); font-size: 1.05rem; margin-bottom: 1.5rem; }
.story-block p strong { color: var(--bone); font-weight: 500; }
.story-divider { text-align: center; margin: 3rem 0; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.32em; color: var(--brass); }
.story-divider::before, .story-divider::after { content: "—"; margin: 0 1rem; color: var(--kelp); }
.values { background: var(--ocean); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; }
.value-card { padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--hairline); background: var(--deep); }
.value-card .num { font-family: var(--serif); font-size: 2.5rem; color: var(--brass); margin-bottom: 0.5rem; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.value-card p { color: var(--bone-dim); font-size: 0.95rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: var(--bone-dim); margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--hairline); }
.contact-detail .label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); }
.contact-detail .value { color: var(--bone); font-size: 1.05rem; }
.socials { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link { width: 42px; height: 42px; border: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; color: var(--bone); transition: all 0.3s ease; }
.social-link:hover { background: var(--brass); color: var(--abyss); border-color: var(--brass); }
.contact-form { background: var(--deep); padding: 2.5rem; border: 1px solid var(--hairline); }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 0.5rem; }
.field input, .field textarea, .field select { width: 100%; background: var(--abyss); border: 1px solid var(--hairline); color: var(--bone); padding: 0.85rem 1rem; font-family: var(--sans); font-size: 0.95rem; transition: border-color 0.2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brass); }
.field textarea { resize: vertical; min-height: 130px; }

/* FOOTER */
.footer { background: var(--abyss); padding: 4rem 0 2rem; border-top: 1px solid var(--hairline); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { display: block; margin-bottom: 1.5rem; }
.footer-brand img { height: 100px; width: auto; display: block; max-width: 100%; }
.footer p { color: var(--bone-dim); font-size: 0.92rem; max-width: 24rem; }
.footer h5 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); margin-bottom: 1.25rem; font-weight: 600; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.65rem; }
.footer ul a { color: var(--bone-dim); font-size: 0.92rem; transition: color 0.2s ease; }
.footer ul a:hover { color: var(--brass); }
.footer-bottom { border-top: 1px solid var(--hairline); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom small { color: var(--bone-dim); font-size: 0.82rem; letter-spacing: 0.05em; }
.footer-bottom .tagline { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); }

/* RESPONSIVE */
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: 110px; left: 0; right: 0; background: var(--abyss); border-bottom: 1px solid var(--hairline); flex-direction: column; gap: 0; padding: 1rem 0; transform: translateY(-150%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1rem; }
  .story-teaser-grid, .product-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product:nth-child(even) .product-grid { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 5rem 0; }
  .page-header { padding: 11rem 0 4rem; }
  .brand { height: 64px; }
  .brand img { height: 64px; }
  .nav-inner { min-height: 80px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
