:root {
  --paper: #fff8ef;
  --cream: #fffdf8;
  --ink: #1f2630;
  --navy: #243650;
  --muted: #716b63;
  --coral: #df715f;
  --rose: #f5c8bc;
  --sage: #7b9073;
  --green: #315f4f;
  --gold: #c49548;
  --line: rgba(31, 38, 48, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(31, 38, 48, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.announcement {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 8px clamp(18px, 4vw, 56px);
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.announcement a {
  color: rgba(255, 255, 255, 0.78);
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 239, 0.94);
  box-shadow: 0 10px 30px rgba(31, 38, 48, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.nav {
  display: flex;
  gap: clamp(12px, 2.6vw, 30px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1.2fr);
  min-height: 92vh;
  padding: 142px clamp(20px, 6vw, 82px) 58px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.97), rgba(255, 248, 239, 0.78) 38%, rgba(255, 248, 239, 0.18) 74%),
    url("assets/pguk-hero.png") center / cover;
}

.hero-copy-block {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.8vw, 60px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy-block p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 22px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--navy);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(39, 58, 86, 0.3);
  color: var(--navy);
}

.button.light {
  background: var(--white);
  color: var(--navy);
}

.personal-card {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(360px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.personal-card h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 44px);
}

.stamp {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.personal-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.personal-lines span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px dashed rgba(39, 58, 86, 0.36);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.studio-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
}

.studio-strip div {
  min-height: 240px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.studio-strip div:last-child {
  border-right: 0;
}

.studio-strip span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--rose);
  font-weight: 900;
}

.studio-strip h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.studio-strip p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.occasions {
  padding: clamp(58px, 9vw, 112px) clamp(20px, 6vw, 82px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.occasion-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(240px, 0.85fr);
  grid-template-rows: repeat(2, minmax(230px, auto));
  gap: 18px;
}

.occasion-feature,
.occasion-tile {
  position: relative;
  min-height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 12px 36px rgba(31, 38, 48, 0.08);
}

.occasion-feature {
  grid-row: span 2;
}

.occasion-feature img,
.occasion-tile img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.occasion-feature::after,
.occasion-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 38, 48, 0.02), rgba(31, 38, 48, 0.68));
}

.occasion-feature div,
.occasion-tile div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(20px, 3vw, 34px);
  color: var(--white);
}

.occasion-feature span,
.occasion-tile span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.occasion-feature h3 {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.occasion-tile h3 {
  max-width: 360px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500;
}

.recipient-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
}

.recipient-list a {
  display: grid;
  min-height: 82px;
  place-items: center;
  border-right: 1px solid var(--line);
  padding: 16px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.recipient-list a:last-child {
  border-right: 0;
}

.recipient-list a:hover {
  background: var(--rose);
}

.finder {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 18px;
  padding: clamp(58px, 9vw, 112px) clamp(20px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(245, 200, 188, 0.34), rgba(255, 253, 248, 0) 44%),
    #f3eadf;
}

.finder-panel,
.finder-result {
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--cream);
  box-shadow: 0 12px 36px rgba(31, 38, 48, 0.08);
}

.finder-panel {
  align-self: start;
}

.finder-controls {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.finder-choice {
  min-height: 52px;
  border: 1px solid rgba(39, 58, 86, 0.18);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.finder-choice:hover,
.finder-choice.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.finder-result {
  display: grid;
  align-content: center;
  min-height: 390px;
  background:
    linear-gradient(135deg, rgba(222, 113, 95, 0.16), rgba(196, 149, 72, 0.1)),
    var(--cream);
}

.finder-result span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-result h3 {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.04;
}

.finder-result p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.delivery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 8vw, 94px) clamp(20px, 7vw, 96px);
  background: var(--sage);
  color: var(--white);
}

.delivery-copy {
  max-width: 780px;
}

.delivery .eyebrow {
  color: var(--rose);
}

.delivery p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 82px);
  background: #17202d;
  color: var(--white);
}

.footer p {
  margin: 0;
  font-weight: 900;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    padding-top: 12px;
    font-size: 13px;
  }

  .hero,
  .studio-strip,
  .occasion-layout,
  .finder {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(255, 248, 239, 0.98), rgba(255, 248, 239, 0.78) 52%, rgba(255, 248, 239, 0.24)),
      url("assets/pguk-hero.png") 58% center / cover;
  }

  .personal-card {
    justify-self: start;
    margin-top: 34px;
  }

  .studio-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .studio-strip div:last-child {
    border-bottom: 0;
  }

  .occasion-feature {
    grid-row: auto;
  }

  .occasion-feature,
  .occasion-tile {
    min-height: 360px;
  }

  .recipient-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipient-list a:nth-child(2) {
    border-right: 0;
  }

  .recipient-list a {
    border-bottom: 1px solid var(--line);
  }

  .delivery,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .announcement {
    position: static;
    gap: 12px;
    flex-direction: column;
  }

  .site-header {
    position: sticky;
    top: 0;
    padding: 14px 16px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero {
    padding-top: 74px;
  }

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

  .button {
    padding-right: 16px;
    padding-left: 16px;
  }

  .personal-lines,
  .recipient-list {
    grid-template-columns: 1fr;
  }

  .recipient-list a,
  .recipient-list a:nth-child(2) {
    border-right: 0;
  }
}
