/* ============================================================
   TINOLI — Premium Handcraft Jewelry Portfolio
   tinoli.ru
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
  --bg-primary: #09040f;
  --bg-secondary: #110620;
  --bg-tertiary: #180930;
  --bg-card: #1a0c2e;
  --bg-card-hover: #200e38;

  --gold: #d4a84b;
  --gold-light: #f0c96a;
  --gold-dark: #a8832a;
  --gold-pale: rgba(212, 168, 75, 0.12);
  --gold-shimmer: linear-gradient(135deg, #a8832a 0%, #d4a84b 30%, #f0c96a 55%, #d4a84b 75%, #a8832a 100%);

  --text-primary: #f5f0ea;
  --text-secondary: #d8cfea;
  --text-muted: #9b8fb8;
  --text-body: #c8bedd;

  --border: rgba(212, 168, 75, 0.18);
  --border-hover: rgba(212, 168, 75, 0.5);
  --shadow-gold: 0 0 40px rgba(212, 168, 75, 0.15);
  --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.65);

  --radius: 3px;
  --transition: 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.18s ease;
  --max-width: 1320px;
  --header-height: 76px;

  /* Typography scale */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cinzel', 'Trajan Pro', serif;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background-color: var(--bg-primary);
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--gold-light); }

::selection {
  background: var(--gold-dark);
  color: var(--text-primary);
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-primary);
  text-wrap: pretty;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.section-eyebrow {
  display: block;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.step-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

/* ===================== UTILITY ===================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes goldPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ===================== HEADER & NAV ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(9, 4, 15, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-fast);
}
.logo:hover {
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(212, 168, 75, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover,
.nav a.active { color: var(--gold); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.burger span {
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
  transform-origin: center;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(160, 80, 240, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(90, 20, 170, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(212, 168, 75, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 40%, rgba(50, 8, 90, 0.55) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 75, 0.06);
  animation: goldPulse 7s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 75, 0.04);
  animation: goldPulse 7s ease-in-out infinite 1.2s;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  animation: fadeIn 1.4s ease;
}

.hero-ornament {
  display: inline-block;
  margin-bottom: 1.8rem;
  color: var(--gold-dark);
  font-size: 1.1rem;
  letter-spacing: 0.6em;
  opacity: 0.5;
}

.hero h1 {
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.35em;
  margin-bottom: 1.2rem;
  background: var(--gold-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 7s linear infinite;
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 1rem 2.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-pale);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.btn:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 28px rgba(212, 168, 75, 0.15);
}
.btn:hover::before { transform: scaleX(1); }

.btn span, .btn > * { position: relative; z-index: 1; }

.btn-filled {
  background: var(--gold-dark);
  border-color: var(--gold);
  color: var(--bg-primary);
  font-weight: 600;
}
.btn-filled:hover {
  background: var(--gold);
  color: var(--bg-primary);
}
.btn-filled::before { display: none; }

/* ===================== SECTION DIVIDER ===================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
  margin: 0 auto;
  max-width: 560px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.section-divider .ornament {
  color: var(--gold-dark);
  font-size: 1rem;
  opacity: 0.55;
  font-family: serif;
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .label {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===================== WORKS GRID ===================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  border-radius: var(--radius);
}

.work-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.work-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card-image .img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.work-card:hover .work-card-image .img-hover { opacity: 1; }
.work-card:hover .work-card-image img:first-child { transform: scale(1.04); }

.work-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(9, 4, 15, 0.94));
  transform: translateY(16px);
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover .work-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.work-card-overlay h3 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.work-card-overlay p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Work card info below image */
.work-card-info {
  padding: 1.2rem 1.4rem 1.4rem;
}

.work-card-info h3 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.work-card-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.work-card-info .category-tag {
  display: inline-block;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.58rem;
  color: var(--gold-dark);
  border: 1px solid var(--border);
  padding: 0.2rem 0.75rem;
  margin-top: 0.75rem;
  border-radius: var(--radius);
}

/* ===================== FILTER BUTTONS ===================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(24px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.28s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--border);
}

.lightbox-info {
  text-align: center;
  padding: 1.4rem 0;
}

.lightbox-info h3 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.lightbox-info p {
  color: var(--text-muted);
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10000;
}
.lightbox-close:hover {
  color: var(--gold-light);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  transition: var(--transition-fast);
  z-index: 10000;
}
.lightbox-nav:hover { color: var(--gold-light); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ===================== ABOUT SECTION ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image { position: relative; }

.about-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--border);
  pointer-events: none;
  transition: var(--transition);
  opacity: 0;
}
.about-image-frame:hover::after { opacity: 1; }

.about-image-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-size: 1.2rem;
  letter-spacing: 0.4em;
}

.about-text h2 {
  font-style: italic;
  margin-bottom: 1.4rem;
  color: var(--text-primary);
}

.about-text .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-dark);
  line-height: 1.65;
}

.about-text p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  line-height: 1.85;
}

/* ===================== CONTACT SECTION ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.contact-info .order-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-secondary);
  border-radius: var(--radius);
}

.contact-link:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold);
}

.contact-link .icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-link .icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-link-text .label {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.58rem;
  color: var(--text-muted);
  display: block;
}

.contact-link-text .value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 400;
}

.contact-note {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  background: rgba(212, 168, 75, 0.03);
  border-radius: var(--radius);
}

.contact-note p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

.contact-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-decoration-inner {
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--border);
  width: 100%;
  border-radius: var(--radius);
}

.contact-deco-logo {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

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

.footer-made {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-dark);
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  padding: 10rem 0 4.5rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(160, 80, 240, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 30%, rgba(50, 8, 90, 0.28) 0%, transparent 60%),
    var(--bg-primary);
}

.page-hero h1 {
  font-style: italic;
  background: var(--gold-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
}

.page-hero .subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-dark);
  opacity: 0.85;
}

/* ===================== EMPTY STATE ===================== */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.25;
}

.empty-state p {
  font-size: 1.15rem;
  font-style: italic;
}

/* ===================== MOBILE NAV OPEN ===================== */
@media (max-width: 768px) {
  .burger { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: rgba(9, 4, 15, 0.98);
    backdrop-filter: blur(32px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid var(--border);
  }

  .nav.open { right: 0; }

  .nav a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .works-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 4rem 0; }
  .hero h1 { letter-spacing: 0.2em; }
  .contact-decoration { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .btn { padding: 0.85rem 2rem; }
  .hero-ornament { display: none; }
}
