:root {
  --gd-black: #070707;
  --gd-black-soft: #0b0b0a;
  --gd-graphite: #141414;
  --gd-panel: rgba(19, 19, 18, 0.92);
  --gd-panel-soft: rgba(24, 23, 21, 0.76);
  --gd-gold: #d7a45a;
  --gd-gold-light: #f4cc82;
  --gd-gold-dark: #9f6d2f;
  --gd-ivory: #f4efe5;
  --gd-white: #fffdf8;
  --gd-soft: #c7c0b6;
  --gd-muted: #89837b;
  --gd-border: rgba(215, 164, 90, 0.26);
  --gd-border-strong: rgba(215, 164, 90, 0.56);
  --gd-radius: 12px;
  --gd-shadow: 0 28px 72px rgba(0, 0, 0, 0.48);
  --gd-shell: 1640px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body.gd-home {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--gd-ivory);
  background:
    radial-gradient(circle at 73% 7%, rgba(183, 121, 48, 0.11), transparent 28rem),
    radial-gradient(circle at 18% 48%, rgba(91, 62, 31, 0.09), transparent 25rem),
    linear-gradient(180deg, #050505 0%, var(--gd-black) 46%, #090908 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.gd-home img,
.gd-home video {
  display: block;
  max-width: 100%;
}

.gd-home a {
  color: inherit;
  text-decoration: none;
}

.gd-home button,
.gd-home a {
  -webkit-tap-highlight-color: transparent;
}

.gd-home button,
.gd-home input,
.gd-home select,
.gd-home textarea {
  font: inherit;
}

.gd-home button {
  color: inherit;
}

.gd-home [hidden] {
  display: none !important;
}

.gd-home :focus-visible {
  outline: 2px solid var(--gd-gold-light);
  outline-offset: 4px;
}

.gd-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 7px;
  color: #17100a;
  background: var(--gd-gold-light);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.gd-skip-link:focus {
  transform: translateY(0);
}

.gd-shell {
  width: min(calc(100% - 64px), var(--gd-shell));
  margin-inline: auto;
}

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

.gd-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--gd-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.36em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gd-eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--gd-gold);
  box-shadow: 0 0 16px rgba(215, 164, 90, 0.45);
}

/* Header */
.gd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gd-header-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(480px, 1.4fr) auto;
  align-items: center;
  gap: 36px;
  width: min(calc(100% - 64px), var(--gd-shell));
  min-height: 94px;
  margin-inline: auto;
}

.gd-brand {
  display: flex;
  min-width: 0;
  align-items: center;
}

.gd-brand img {
  width: clamp(210px, 16vw, 278px);
  height: auto;
  object-fit: contain;
}

.gd-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 48px);
  white-space: nowrap;
}

.gd-nav a,
.gd-footer nav a,
.gd-footer-copy a {
  position: relative;
  color: #d8d3ca;
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.gd-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -10px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--gd-gold);
  transition: right 180ms ease, left 180ms ease;
}

.gd-nav a:hover,
.gd-footer nav a:hover,
.gd-footer-copy a:hover {
  color: var(--gd-gold-light);
}

.gd-nav a:hover::after {
  right: 0;
  left: 0;
}

.gd-header-actions,
.gd-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gd-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.gd-button-gold {
  color: #1c1208;
  background: linear-gradient(135deg, #f6d494 0%, #dfaa5e 52%, #c98a3e 100%);
  box-shadow: 0 12px 32px rgba(215, 164, 90, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.gd-button-gold:hover {
  box-shadow: 0 17px 42px rgba(215, 164, 90, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.gd-button-outline {
  border-color: var(--gd-border-strong);
  color: var(--gd-ivory);
  background: rgba(255, 255, 255, 0.018);
}

.gd-button-outline:hover {
  border-color: var(--gd-gold-light);
  color: var(--gd-gold-light);
  background: rgba(215, 164, 90, 0.055);
}

.gd-button-large {
  min-height: 56px;
  padding-inline: 28px;
  font-size: 0.94rem;
}

.gd-play-icon {
  position: relative;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.gd-play-icon::after {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  content: "";
}

.gd-menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--gd-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.gd-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--gd-gold-light);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.gd-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 94px);
  padding: clamp(70px, 7vw, 112px) 0 72px;
  overflow: hidden;
}

.gd-hero::before {
  position: absolute;
  z-index: -3;
  top: 0;
  right: 4%;
  width: min(46vw, 760px);
  height: min(46vw, 760px);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(215, 164, 90, 0.07), transparent 66%);
  filter: blur(18px);
}

.gd-hero-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.78fr) minmax(680px, 1.36fr);
  gap: clamp(32px, 4.4vw, 82px);
  align-items: center;
}

.gd-hero-copy {
  position: relative;
  z-index: 4;
  padding-left: clamp(0px, 1vw, 18px);
  animation: gd-rise 760ms ease both;
}

.gd-hero h1,
.gd-section-heading h2,
.gd-photographers h2,
.gd-resource-card h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.gd-hero h1 {
  margin: 0 0 24px;
  color: var(--gd-ivory);
  font-size: clamp(3.8rem, 5vw, 6.15rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.gd-hero h1 > span {
  display: block;
}

.gd-hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--gd-soft);
  font-size: clamp(1rem, 1.14vw, 1.22rem);
  line-height: 1.58;
}

.gd-hero-actions {
  margin-top: 34px;
}

.gd-compact-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.gd-compact-benefits article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
}

.gd-benefit-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--gd-border-strong);
  border-radius: 50%;
  color: var(--gd-gold-light);
  font-size: 0.72rem;
  letter-spacing: -0.05em;
  background: rgba(215, 164, 90, 0.035);
}

.gd-compact-benefits h2 {
  margin: 1px 0 3px;
  color: var(--gd-gold-light);
  font-size: 0.77rem;
  line-height: 1.25;
}

.gd-compact-benefits p {
  margin: 0;
  color: #9f9990;
  font-size: 0.66rem;
  line-height: 1.45;
}

.gd-orbits {
  position: absolute;
  z-index: -2;
  top: -7%;
  right: -8%;
  width: 70vw;
  height: 100%;
  opacity: 0.52;
  pointer-events: none;
}

.gd-orbits span {
  position: absolute;
  border: 1px solid rgba(215, 164, 90, 0.16);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.gd-orbits span:nth-child(1) {
  top: 9%;
  right: -9%;
  width: 102%;
  height: 56%;
}

.gd-orbits span:nth-child(2) {
  top: 4%;
  right: 6%;
  width: 70%;
  height: 43%;
}

.gd-orbits span:nth-child(3) {
  top: 21%;
  right: -12%;
  width: 82%;
  height: 61%;
}

/* Dashboard mockup */
.gd-dashboard-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.28 / 1;
  container-type: inline-size;
  animation: gd-rise 900ms 120ms ease both;
}

.gd-dashboard-scene::before {
  position: absolute;
  z-index: -3;
  inset: 14% 2% 5% 5%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(ellipse, rgba(215, 164, 90, 0.11), transparent 66%);
  filter: blur(22px);
}

.gd-scene-ring {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(215, 164, 90, 0.25);
  border-left-color: transparent;
  border-radius: 50%;
  pointer-events: none;
}

.gd-scene-ring-one {
  inset: 7% -2% 7% 0;
  transform: rotate(-7deg);
}

.gd-scene-ring-two {
  inset: 17% 10% 17% 2%;
  border-color: rgba(215, 164, 90, 0.12);
  transform: rotate(8deg);
}

.gd-scene-star {
  position: absolute;
  z-index: 5;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gd-gold-light);
  box-shadow: 0 0 14px 5px rgba(215, 164, 90, 0.24);
}

.gd-scene-star-one {
  top: 14%;
  right: 5%;
}

.gd-scene-star-two {
  right: 18%;
  bottom: 10%;
}

.gd-dashboard,
.gd-floating-card {
  border: 1px solid rgba(215, 164, 90, 0.19);
  color: #eae4da;
  background: linear-gradient(145deg, rgba(25, 25, 23, 0.96), rgba(9, 9, 9, 0.98));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.gd-dashboard {
  position: absolute;
  top: 11%;
  left: 0;
  width: 76%;
  height: 70%;
  overflow: hidden;
  border-radius: clamp(6px, 1.1cqw, 12px);
  font-size: clamp(0.32rem, 0.86cqw, 0.66rem);
  transform: perspective(1300px) rotateY(-1.8deg) rotateX(0.5deg);
  transform-origin: center;
}

.gd-dashboard-topbar {
  display: flex;
  height: 11%;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.1%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(8, 8, 8, 0.65);
}

.gd-dashboard-topbar img {
  width: 21%;
  height: auto;
}

.gd-dashboard-topbar > span {
  color: #777169;
  letter-spacing: 0.15em;
}

.gd-dashboard-body {
  display: grid;
  grid-template-columns: 20% 1fr;
  height: 89%;
}

.gd-dashboard-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2.2%;
  padding: 5% 8%;
  border-right: 1px solid rgba(255, 255, 255, 0.045);
  background: rgba(5, 5, 5, 0.28);
}

.gd-dashboard-sidebar div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9%;
  padding: 8% 9%;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #8e8981;
  white-space: nowrap;
}

.gd-dashboard-sidebar div.is-active {
  border-color: rgba(215, 164, 90, 0.16);
  color: var(--gd-gold-light);
  background: rgba(215, 164, 90, 0.09);
}

.gd-dashboard-sidebar div span {
  color: var(--gd-gold);
}

.gd-dashboard-content {
  min-width: 0;
  padding: 4.6% 4.2%;
}

.gd-dashboard-greeting {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.gd-dashboard-greeting strong,
.gd-dashboard-greeting small {
  display: block;
}

.gd-dashboard-greeting strong {
  color: var(--gd-ivory);
  font-size: 1.65em;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.gd-dashboard-greeting small {
  margin-top: 2%;
  color: #817c75;
  font-size: 0.85em;
}

.gd-avatar {
  display: grid;
  width: 2.4em;
  height: 2.4em;
  place-items: center;
  border: 1px solid rgba(215, 164, 90, 0.27);
  border-radius: 50%;
  color: var(--gd-gold-light);
  background: rgba(215, 164, 90, 0.08);
}

.gd-dashboard-label {
  margin: 5% 0 2.3%;
  color: #969087;
  font-size: 0.83em;
  font-weight: 700;
}

.gd-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2%;
}

.gd-stat-grid article {
  min-width: 0;
  padding: 8% 8%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.018);
}

.gd-stat-grid small,
.gd-stat-grid strong,
.gd-stat-grid span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gd-stat-grid small {
  color: #858078;
  font-size: 0.78em;
}

.gd-stat-grid strong {
  margin: 5% 0;
  color: var(--gd-ivory);
  font-size: 1.35em;
}

.gd-stat-grid span {
  color: #729565;
  font-size: 0.68em;
}

.gd-dashboard-lower {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.4%;
  height: 48%;
  margin-top: 2.6%;
}

.gd-activity-panel,
.gd-album-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.014);
}

.gd-panel-heading,
.gd-floating-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.gd-panel-heading {
  padding: 4% 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.gd-panel-heading span {
  color: var(--gd-gold);
  font-size: 0.75em;
}

.gd-activity-panel ul {
  display: grid;
  gap: 3%;
  margin: 0;
  padding: 4% 5%;
  list-style: none;
}

.gd-activity-panel li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 3%;
  align-items: center;
}

.gd-activity-panel li strong,
.gd-activity-panel li small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gd-activity-panel li strong {
  color: #cfc8bd;
  font-size: 0.76em;
  font-weight: 600;
}

.gd-activity-panel li small,
.gd-activity-panel time {
  color: #69645e;
  font-size: 0.63em;
}

.gd-status-dot {
  width: 1.55em;
  height: 1.55em;
  border-radius: 50%;
  background: #777168;
  box-shadow: inset 0 0 0 0.45em rgba(0, 0, 0, 0.38);
}

.gd-status-green {
  background: #83a96d;
}

.gd-status-gold {
  background: var(--gd-gold);
}

.gd-status-blue {
  background: #668ba2;
}

.gd-album-panel {
  padding-bottom: 3%;
}

.gd-album-panel > img {
  width: 49%;
  height: 54%;
  margin: 5%;
  border-radius: 4px;
  object-fit: cover;
  filter: sepia(0.2) brightness(0.72);
}

.gd-album-panel > div:not(.gd-panel-heading) {
  position: absolute;
  top: 37%;
  left: 59%;
}

.gd-album-panel > div strong,
.gd-album-panel > div small {
  display: block;
}

.gd-album-panel > div small {
  color: #767068;
  font-size: 0.72em;
}

.gd-album-panel button,
.gd-gallery-preview button,
.gd-social-card button {
  border: 1px solid rgba(215, 164, 90, 0.28);
  border-radius: 4px;
  color: var(--gd-gold-light);
  background: rgba(215, 164, 90, 0.1);
  pointer-events: none;
}

.gd-album-panel > button {
  position: absolute;
  right: 5%;
  bottom: 8%;
  padding: 3% 7%;
  font-size: 0.75em;
}

.gd-floating-card {
  position: absolute;
  z-index: 4;
  overflow: hidden;
  border-radius: clamp(5px, 0.9cqw, 10px);
  font-size: clamp(0.3rem, 0.9cqw, 0.65rem);
}

.gd-floating-heading {
  padding: 5% 6% 3.5%;
}

.gd-floating-heading strong {
  overflow: hidden;
  color: #eee8df;
  font-size: 1em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gd-floating-heading > span {
  color: #827a70;
  font-size: 0.74em;
  white-space: nowrap;
}

.gd-gallery-card {
  top: 2%;
  right: 4%;
  width: 36%;
  height: 27%;
}

.gd-gallery-preview {
  position: relative;
  height: 72%;
  margin: 0 5% 5%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  background: #0b0b0b;
}

.gd-gallery-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: sepia(0.28) saturate(0.82) brightness(0.74);
}

.gd-gallery-preview > span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(2, 2, 2, 0.9));
  pointer-events: none;
}

.gd-gallery-preview > div {
  position: absolute;
  bottom: 11%;
  left: 5%;
}

.gd-gallery-preview small,
.gd-gallery-preview strong {
  display: block;
}

.gd-gallery-preview small {
  color: #a19a90;
  font-size: 0.72em;
}

.gd-gallery-preview button {
  position: absolute;
  right: 5%;
  bottom: 10%;
  padding: 3% 7%;
  font-size: 0.73em;
}

.gd-approval-card {
  top: 29%;
  right: 0;
  width: 32%;
  height: 16%;
}

.gd-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 2.2%;
  align-items: center;
  padding: 0 5% 6%;
}

.gd-photo-strip img {
  width: 100%;
  aspect-ratio: 1.45;
  border-radius: 3px;
  object-fit: cover;
  filter: sepia(0.2) brightness(0.77);
}

.gd-photo-strip span {
  display: grid;
  width: 2.2em;
  height: 2.2em;
  place-items: center;
  border-radius: 50%;
  color: #16100a;
  background: var(--gd-gold);
  font-weight: 900;
}

.gd-social-card {
  top: 48%;
  right: 2%;
  width: 29%;
  height: 27%;
}

.gd-social-icons {
  display: flex;
  gap: 5%;
  padding: 0 6% 4%;
  color: var(--gd-gold-light);
}

.gd-social-icons span {
  display: grid;
  width: 1.9em;
  height: 1.9em;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  font-weight: 700;
}

.gd-social-card > img {
  width: 88%;
  height: 47%;
  margin-inline: 6%;
  border-radius: 4px;
  object-fit: cover;
  filter: sepia(0.23) brightness(0.65);
}

.gd-social-card button {
  position: absolute;
  right: 10%;
  bottom: 8%;
  left: 10%;
  padding: 3% 4%;
  font-size: 0.72em;
}

.gd-contract-card {
  right: 33%;
  bottom: 6%;
  width: 25%;
  height: 16%;
  padding-bottom: 4%;
}

.gd-contract-card p,
.gd-payment-card p {
  margin: 0 6%;
  color: var(--gd-ivory);
  font-size: 1.05em;
}

.gd-contract-card small,
.gd-payment-card small {
  display: block;
  margin: 1% 6%;
  color: #777168;
  font-size: 0.7em;
}

.gd-signature {
  position: absolute;
  right: 8%;
  bottom: 18%;
  color: #9a9389;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6em;
  font-style: italic;
  transform: rotate(-9deg);
}

.gd-payment-card {
  right: 3%;
  bottom: 3%;
  width: 25%;
  height: 16%;
}

.gd-payment-card p {
  font-size: 1.35em;
}

.gd-payment-check {
  display: grid;
  width: 2.3em;
  height: 2.3em;
  place-items: center;
  border-radius: 50%;
  color: #8db679 !important;
  background: rgba(107, 147, 89, 0.15);
}

/* Resource cards */
.gd-resources {
  position: relative;
  padding: 36px 0 82px;
}

.gd-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 28px;
}

.gd-section-heading .gd-eyebrow {
  min-width: max-content;
  margin: 0;
}

.gd-section-heading h2 {
  max-width: 710px;
  margin: 0;
  color: var(--gd-ivory);
  font-size: clamp(1.7rem, 2.25vw, 2.7rem);
  font-weight: 500;
  line-height: 1.12;
  text-align: right;
}

.gd-resource-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.gd-resource-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(20px, 1.7vw, 28px);
  overflow: hidden;
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 50%),
    rgba(17, 17, 16, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gd-resource-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  content: "";
  background: rgba(215, 164, 90, 0.07);
  filter: blur(15px);
  transition: transform 220ms ease;
}

.gd-resource-card:hover {
  z-index: 2;
  border-color: var(--gd-border-strong);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
  transform: translateY(-6px);
}

.gd-resource-card:hover::after {
  transform: scale(1.25);
}

.gd-resource-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  object-fit: contain;
}

.gd-resource-card h3 {
  margin: 0 0 10px;
  color: var(--gd-ivory);
  font-size: clamp(1.25rem, 1.45vw, 1.65rem);
  font-weight: 500;
  line-height: 1.1;
}

.gd-resource-card p {
  margin: 0 0 24px;
  color: #a6a097;
  font-size: clamp(0.75rem, 0.78vw, 0.88rem);
  line-height: 1.56;
}

.gd-resource-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gd-gold-light);
  font-size: 0.78rem;
  font-weight: 800;
}

.gd-resource-card a span {
  transition: transform 180ms ease;
}

.gd-resource-card a:hover span {
  transform: translateX(5px);
}

/* Photographer benefits */
.gd-photographers {
  padding: 0 0 24px;
}

.gd-photographers-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.96fr) minmax(0, 3.25fr);
  overflow: hidden;
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  background:
    radial-gradient(circle at 22% 30%, rgba(215, 164, 90, 0.07), transparent 27rem),
    linear-gradient(110deg, rgba(19, 19, 18, 0.92), rgba(11, 11, 10, 0.9));
  box-shadow: var(--gd-shadow);
}

.gd-photographers-panel::before {
  position: absolute;
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(215, 164, 90, 0.1);
  border-radius: 50%;
  content: "";
}

.gd-photographers-intro {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 3.5vw, 58px);
}

.gd-photographers-intro .gd-eyebrow {
  margin-bottom: 16px;
  font-size: 0.69rem;
}

.gd-photographers h2 {
  margin: 0 0 18px;
  color: var(--gd-ivory);
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.gd-photographers-intro > p:last-child {
  max-width: 370px;
  margin: 0;
  color: #aaa39a;
  font-size: 0.88rem;
  line-height: 1.62;
}

.gd-photographer-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-width: 0;
  padding: 32px 0;
}

.gd-photographer-benefits article {
  min-width: 0;
  padding: 18px clamp(20px, 2vw, 36px);
  border-left: 1px solid rgba(215, 164, 90, 0.18);
}

.gd-round-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid var(--gd-border-strong);
  border-radius: 50%;
  background: rgba(215, 164, 90, 0.035);
}

.gd-round-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.gd-photographer-benefits h3 {
  margin: 0 0 10px;
  color: var(--gd-ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.08vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
}

.gd-photographer-benefits p {
  margin: 0;
  color: #9c968e;
  font-size: clamp(0.72rem, 0.75vw, 0.84rem);
  line-height: 1.55;
}

/* Lower trust band */
.gd-trust {
  padding: 0 0 26px;
}

.gd-trust-panel {
  display: grid;
  grid-template-columns: minmax(390px, 1.35fr) minmax(0, 2.15fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--gd-border);
  border-radius: var(--gd-radius);
  background: rgba(18, 18, 17, 0.8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.gd-trust-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 24px;
  padding: 24px 38px;
}

.gd-trust-brand > img {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  object-fit: contain;
}

.gd-stars {
  margin-bottom: 8px;
  color: var(--gd-gold-light);
  font-size: 1.08rem;
  letter-spacing: 0.28em;
}

.gd-trust-brand p {
  margin: 0;
  color: #c5beb4;
  font-size: 0.88rem;
}

.gd-trust-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: stretch;
}

.gd-trust-items p {
  display: grid;
  margin: 0;
  padding: 24px;
  place-items: center;
  border-left: 1px solid rgba(215, 164, 90, 0.17);
  color: var(--gd-gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  text-align: center;
}

/* Footer */
.gd-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #070706;
}

.gd-footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(350px, 1fr) auto;
  gap: 42px;
  align-items: center;
  min-height: 150px;
  padding-block: 28px;
}

.gd-footer-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 22px;
}

.gd-footer-brand img {
  width: 210px;
  height: auto;
}

.gd-footer-brand p,
.gd-footer-copy p {
  margin: 0;
  color: #878179;
  font-size: 0.74rem;
}

.gd-footer nav {
  display: flex;
  gap: 24px;
}

.gd-footer-copy {
  display: grid;
  gap: 7px;
  text-align: right;
}

.gd-footer-copy span {
  margin-inline: 8px;
  color: var(--gd-border-strong);
}

.gd-to-top {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gd-border-strong);
  border-radius: 50%;
  color: var(--gd-gold-light);
  transition: transform 180ms ease, background 180ms ease;
}

.gd-to-top:hover {
  background: rgba(215, 164, 90, 0.08);
  transform: translateY(-3px);
}

@keyframes gd-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1480px) {
  .gd-header-inner {
    grid-template-columns: minmax(210px, 0.72fr) minmax(450px, 1.25fr) auto;
    gap: 26px;
  }

  .gd-hero-grid {
    grid-template-columns: minmax(370px, 0.78fr) minmax(610px, 1.22fr);
    gap: 34px;
  }

  .gd-resource-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gd-resource-card {
    min-height: 270px;
  }

  .gd-photographers-panel {
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 2.7fr);
  }

  .gd-photographer-benefits article {
    padding-inline: 22px;
  }
}

@media (max-width: 1260px) {
  .gd-shell,
  .gd-header-inner {
    width: min(calc(100% - 48px), var(--gd-shell));
  }

  .gd-header-inner {
    grid-template-columns: 210px minmax(420px, 1fr) auto;
    gap: 20px;
  }

  .gd-nav {
    gap: 22px;
  }

  .gd-header-actions {
    gap: 10px;
  }

  .gd-header-actions .gd-button {
    padding-inline: 18px;
  }

  .gd-hero-grid {
    grid-template-columns: minmax(350px, 0.72fr) minmax(560px, 1.18fr);
  }

  .gd-hero h1 {
    font-size: clamp(3.4rem, 5vw, 4.7rem);
  }

  .gd-compact-benefits {
    gap: 12px;
  }

  .gd-photographers-panel {
    grid-template-columns: 1fr;
  }

  .gd-photographers-intro {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 18px 38px;
    align-items: end;
    padding-bottom: 24px;
  }

  .gd-photographers-intro .gd-eyebrow {
    grid-column: 1 / -1;
    margin: 0;
  }

  .gd-photographers-intro > p:last-child {
    max-width: 560px;
  }

  .gd-photographer-benefits {
    border-top: 1px solid rgba(215, 164, 90, 0.17);
  }

  .gd-photographer-benefits article:first-child {
    border-left: 0;
  }

  .gd-trust-panel {
    grid-template-columns: 1fr 1.7fr;
  }

  .gd-footer-inner {
    grid-template-columns: 1fr auto 1fr auto;
    gap: 24px;
  }

  .gd-footer-brand {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 1080px) {
  .gd-header-inner {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .gd-brand img {
    width: 230px;
  }

  .gd-menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .gd-nav,
  .gd-header-actions {
    display: none;
    grid-column: 1 / -1;
  }

  .gd-header.menu-open .gd-nav,
  .gd-header.menu-open .gd-header-actions {
    display: flex;
  }

  .gd-header.menu-open .gd-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 0 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
  }

  .gd-header.menu-open .gd-nav a {
    padding: 12px 8px;
  }

  .gd-header.menu-open .gd-nav a::after {
    display: none;
  }

  .gd-header.menu-open .gd-header-actions {
    padding: 8px 0 20px;
  }

  .gd-header.menu-open .gd-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .gd-header.menu-open .gd-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .gd-header.menu-open .gd-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .gd-hero {
    min-height: 0;
    padding-top: 74px;
  }

  .gd-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .gd-hero-copy {
    max-width: 720px;
    padding-left: 0;
  }

  .gd-hero h1 {
    font-size: clamp(4rem, 8vw, 6rem);
  }

  .gd-hero-lead {
    font-size: 1.1rem;
  }

  .gd-compact-benefits {
    max-width: 720px;
  }

  .gd-dashboard-scene {
    width: min(100%, 900px);
    margin-inline: auto;
  }

  .gd-section-heading {
    display: block;
  }

  .gd-section-heading .gd-eyebrow {
    margin-bottom: 14px;
  }

  .gd-section-heading h2 {
    text-align: left;
  }

  .gd-resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gd-photographer-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
  }

  .gd-photographer-benefits article {
    padding-block: 28px;
    border-top: 1px solid rgba(215, 164, 90, 0.14);
  }

  .gd-photographer-benefits article:nth-child(1),
  .gd-photographer-benefits article:nth-child(4) {
    border-left: 0;
  }

  .gd-trust-panel {
    grid-template-columns: 1fr;
  }

  .gd-trust-items {
    border-top: 1px solid rgba(215, 164, 90, 0.17);
  }

  .gd-trust-items p:first-child {
    border-left: 0;
  }

  .gd-footer-inner {
    grid-template-columns: 1fr auto;
  }

  .gd-footer-brand,
  .gd-footer-copy {
    align-items: start;
    text-align: left;
  }

  .gd-footer nav {
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .gd-shell,
  .gd-header-inner {
    width: min(calc(100% - 32px), var(--gd-shell));
  }

  .gd-header-inner {
    min-height: 74px;
  }

  .gd-brand img {
    width: min(62vw, 210px);
  }

  .gd-menu-toggle {
    width: 44px;
    height: 42px;
  }

  .gd-header.menu-open .gd-header-actions {
    align-items: stretch;
  }

  .gd-header-actions .gd-button {
    width: 50%;
  }

  .gd-hero {
    padding: 58px 0 48px;
  }

  .gd-eyebrow {
    margin-bottom: 16px;
    font-size: 0.66rem;
    letter-spacing: 0.25em;
  }

  .gd-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 14.4vw, 4.5rem);
  }

  .gd-hero-lead {
    font-size: 1rem;
  }

  .gd-hero-actions {
    align-items: stretch;
    margin-top: 28px;
  }

  .gd-hero-actions .gd-button {
    width: 50%;
    min-width: 0;
    padding-inline: 14px;
  }

  .gd-compact-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .gd-compact-benefits article {
    grid-template-columns: 42px 1fr;
  }

  .gd-compact-benefits h2 {
    font-size: 0.82rem;
  }

  .gd-compact-benefits p {
    font-size: 0.72rem;
  }

  .gd-hero-grid {
    gap: 34px;
  }

  .gd-dashboard-scene {
    width: 100%;
    margin-left: 0;
  }

  .gd-resources {
    padding: 18px 0 54px;
  }

  .gd-section-heading {
    margin-bottom: 22px;
  }

  .gd-section-heading h2 {
    font-size: 1.8rem;
  }

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

  .gd-resource-card {
    min-height: 280px;
  }

  .gd-resource-card h3 {
    font-size: 1.4rem;
  }

  .gd-resource-card p {
    font-size: 0.8rem;
  }

  .gd-photographers-intro {
    display: block;
    padding: 32px 24px;
  }

  .gd-photographers-intro .gd-eyebrow {
    margin-bottom: 16px;
  }

  .gd-photographers h2 {
    margin-bottom: 18px;
  }

  .gd-photographer-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .gd-photographer-benefits article:nth-child(odd) {
    border-left: 0;
  }

  .gd-photographer-benefits article:nth-child(even) {
    border-left: 1px solid rgba(215, 164, 90, 0.14);
  }

  .gd-trust-brand {
    padding: 24px;
  }

  .gd-trust-brand > img {
    width: 72px;
    height: 72px;
  }

  .gd-trust-items {
    grid-template-columns: 1fr;
  }

  .gd-trust-items p {
    min-height: 70px;
    border-top: 1px solid rgba(215, 164, 90, 0.12);
    border-left: 0;
  }

  .gd-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gd-footer-brand {
    display: flex;
  }

  .gd-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .gd-footer-copy {
    gap: 10px;
  }

  .gd-to-top {
    position: absolute;
    right: 0;
    bottom: 28px;
  }
}

@media (max-width: 520px) {
  .gd-header.menu-open .gd-header-actions,
  .gd-hero-actions {
    flex-direction: column;
  }

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

  .gd-hero h1 {
    font-size: clamp(2.75rem, 14vw, 3.7rem);
  }

  .gd-dashboard-scene {
    width: 100%;
    margin-left: 0;
  }

  .gd-resource-grid {
    grid-template-columns: 1fr;
  }

  .gd-resource-card {
    min-height: 240px;
  }

  .gd-photographer-benefits {
    grid-template-columns: 1fr;
  }

  .gd-photographer-benefits article,
  .gd-photographer-benefits article:nth-child(even) {
    border-left: 0;
  }

  .gd-trust-brand {
    align-items: flex-start;
  }

  .gd-trust-brand > img {
    width: 58px;
    height: 58px;
  }

  .gd-stars {
    font-size: 0.92rem;
  }

  .gd-footer-brand {
    display: grid;
  }

  .gd-footer-brand img {
    width: 190px;
  }

  .gd-footer nav {
    display: grid;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gd-home *,
  .gd-home *::before,
  .gd-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
