:root {
  --cream: #f6f1ea;
  --paper: #fcfaf6;
  --wine: #49313b;
  --coral: #aa6e78;
  --pink: #dfc9c9;
  --yellow: #d8c6aa;
  --line: rgba(73, 49, 59, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--wine);
  font-family: "DM Sans", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(73, 49, 59, 0.08) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.23;
  pointer-events: none;
}

a { color: inherit; }

.page-shell {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50% 50% 46% 54%;
  background: var(--coral);
  color: white;
  font-family: "Playfair Display", serif;
  font-style: italic;
  transform: rotate(-7deg);
}

.secret-label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: rgba(73, 49, 59, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.secret-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(170, 110, 120, 0.14);
}

.hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  padding: 74px clamp(0px, 3vw, 42px) 86px;
}

.hero-copy { max-width: 670px; }

.eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--coral);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(4.1rem, 8vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

h1 em {
  color: var(--coral);
  font-weight: 500;
}

.intro {
  max-width: 570px;
  margin: 36px 0 42px;
  color: rgba(73, 49, 59, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.7;
}

.contact-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--wine);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0 0 8px;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}

.contact-link:hover {
  gap: 28px;
  color: var(--coral);
}

.hero-art {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 2px;
  background: var(--pink);
  overflow: hidden;
  box-shadow: 24px 24px 0 var(--yellow);
}

.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise article { position: relative; padding: 40px clamp(20px, 4vw, 60px) 45px; }
.promise article + article { border-left: 1px solid var(--line); }
.promise span { color: var(--coral); font: italic 500 0.9rem "Playfair Display", serif; }
.promise h2 { margin: 14px 0 8px; font: 600 clamp(1.4rem, 2.2vw, 2rem) "Playfair Display", serif; }
.promise p { margin: 0; color: rgba(73, 49, 59, 0.64); font-size: 0.9rem; line-height: 1.6; }

footer {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  color: rgba(73, 49, 59, 0.6);
  font-size: 0.78rem;
}

footer a { text-underline-offset: 4px; }
.footer-message { color: var(--wine); font-family: "Playfair Display", serif; font-size: 1rem; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-copy { max-width: 760px; }
  .hero-art { width: min(76vw, 510px); margin-top: 16px; }
}

@media (max-width: 620px) {
  .page-shell { width: min(100% - 28px, 1380px); }
  .site-header { height: 82px; }
  .secret-label { font-size: 0; }
  .secret-label::after { font-size: 0.66rem; content: "Bryllupsafvikling"; }
  .hero { min-height: auto; gap: 58px; padding: 48px 4px 66px; }
  h1 { font-size: clamp(3.8rem, 19vw, 5.5rem); }
  .intro { margin: 28px 0 34px; }
  .hero-art { width: calc(100% - 26px); box-shadow: 16px 18px 0 var(--yellow); }
  .promise { grid-template-columns: 1fr; }
  .promise article { padding: 28px 10px 30px; }
  .promise article + article { border-top: 1px solid var(--line); border-left: 0; }
  footer { flex-wrap: wrap; gap: 8px 20px; padding: 28px 0; }
  .footer-message { order: -1; width: 100%; }
}
