:root {
  --go-navy: #152033;
  --go-navy-2: #1b2a40;
  --go-navy-deep: #0f1724;
  --go-gold: #c4a574;
  --go-gold-2: #d4b896;
  --go-gold-dark: #a88754;
  --go-cream: #f6f3ee;
  --go-cream-2: #fbf9f6;
  --go-text: #1c1c1c;
  --go-muted: #6d6760;
  --go-line: #e7e0d6;
  --go-white: #ffffff;
  --go-radius: 18px;
  --go-shadow: 0 18px 50px rgba(21, 32, 51, 0.08);
  --go-font: "Outfit", "Segoe UI", sans-serif;
  --go-serif: "Cormorant Garamond", Georgia, serif;
}

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

.go-home,
.go-home body {
  background: var(--go-cream-2);
}

body.go-home {
  margin: 0;
  padding: 0;
  color: var(--go-text);
  font-family: var(--go-font);
  font-size: 16px;
  line-height: 1.6;
  background: var(--go-cream-2);
  overflow-x: hidden;
  max-width: 100%;
}

body.go-home *,
body.go-home *::before,
body.go-home *::after {
  box-sizing: border-box;
}

body.go-home img,
body.go-home svg,
body.go-home video,
body.go-home iframe {
  max-width: 100%;
}

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

.go-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.go-site-header,
.go-site-header *,
.go-footer,
.go-footer *,
.go-search,
.go-search *,
.go-mobile,
.go-mobile * {
  box-sizing: border-box;
  font-family: var(--go-font);
}

.go-site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: var(--go-white);
}

.go-topbar {
  background: var(--go-navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.go-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 16px;
  min-width: 0;
}

.go-topbar-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.go-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.go-topbar-item svg,
.go-topbar-right svg {
  width: 14px;
  height: 14px;
  color: var(--go-gold);
  flex-shrink: 0;
}

.go-topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.go-topbar-right a {
  color: rgba(255, 255, 255, 0.82) !important;
}

.go-topbar-right a:hover {
  color: var(--go-gold) !important;
}

.go-navbar {
  background: #fff;
  border-bottom: 1px solid #f0ece6;
}

.go-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
  min-width: 0;
}

.go-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--go-navy) !important;
}

.go-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--go-navy);
  color: var(--go-gold);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(196, 165, 116, 0.35);
}

.go-logo-mark svg {
  width: 28px;
  height: 28px;
}

.go-logo-text strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.14em;
  font-weight: 600;
  line-height: 1.15;
}

.go-logo-text small {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #8a8176;
  font-weight: 500;
}

.go-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.go-nav > li {
  position: relative;
}

.go-nav > li > a {
  display: block;
  padding: 10px 12px;
  font-size: 13.5px;
  color: #3a3a3a !important;
  font-weight: 500;
}

.go-nav > li > a:hover,
.go-nav > li.is-active > a,
.go-nav > li:hover > a {
  color: var(--go-gold-dark) !important;
}

.go-nav > li.is-active > a {
  box-shadow: inset 0 -2px 0 var(--go-gold);
}

.go-drop {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--go-line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--go-shadow);
  z-index: 20;
}

.go-nav > li:hover > .go-drop,
.go-nav > li:focus-within > .go-drop {
  display: block;
}

.go-drop a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #444 !important;
}

.go-drop a:hover {
  background: var(--go-cream);
  color: var(--go-navy) !important;
}

.go-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.go-icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ece7df;
  border-radius: 10px;
  background: #fff;
  color: var(--go-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.go-icon-btn svg {
  width: 16px;
  height: 16px;
}

.go-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  line-height: 1;
}

.go-btn-dark {
  background: var(--go-navy);
  color: #fff !important;
}

.go-btn-dark:hover {
  background: #0c1420;
}

.go-btn-outline {
  background: transparent;
  color: var(--go-navy) !important;
  border-color: #cfc6b8;
}

.go-btn-outline:hover {
  border-color: var(--go-navy);
}

.go-btn-gold {
  background: var(--go-gold);
  color: var(--go-navy) !important;
}

.go-btn-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28);
}

.go-btn-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.go-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #ece7df;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.go-hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--go-navy);
  margin: 4px auto;
}

.go-hero {
  padding: 54px 0 28px;
  background: linear-gradient(180deg, #fbf9f6 0%, #f4efe8 100%);
}

.go-hero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 40px;
  align-items: center;
}

.go-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--go-gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.go-hero h1 {
  font-family: var(--go-serif);
  font-weight: 600;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.08;
  color: var(--go-navy);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.go-hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--go-gold-dark);
}

.go-hero p {
  max-width: 430px;
  color: var(--go-muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 26px;
}

.go-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.go-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.go-avatars {
  display: flex;
}

.go-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

.go-avatars img:first-child {
  margin-left: 0;
}

.go-trust small {
  display: block;
  font-size: 12px;
  color: var(--go-muted);
  line-height: 1.45;
}

.go-hero-photo {
  position: relative;
  overflow: hidden;
}

.go-hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 24px 60px rgba(21, 32, 51, 0.12);
}

.go-features {
  margin-top: -36px;
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.go-features-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--go-shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 10px;
}

.go-feature {
  padding: 8px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.go-feature + .go-feature {
  border-left: 1px solid #f0ebe4;
}

.go-ico {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #f6efe4;
  color: var(--go-gold-dark);
  display: grid;
  place-items: center;
}

.go-ico svg {
  width: 20px;
  height: 20px;
}

.go-feature h3,
.go-process-item h3,
.go-perk h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--go-navy);
}

.go-feature p,
.go-process-item p,
.go-perk p {
  margin: 0;
  font-size: 13px;
  color: var(--go-muted);
  line-height: 1.45;
}

.go-section {
  padding: 72px 0;
}

.go-collections {
  background: var(--go-cream-2);
}

.go-split-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.go-inspired,
.go-collections,
.go-process,
.go-why,
.go-shop,
.go-news {
  scroll-margin-top: 110px;
}

.go-split-head h2,
.go-center-head h2,
.go-why-copy h2,
.go-shop-copy h2,
.go-news-copy h2,
.go-inspired h2 {
  font-family: var(--go-serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  margin: 0 0 12px;
  color: var(--go-navy);
  font-weight: 600;
}

.go-split-head p,
.go-center-head p {
  margin: 0;
  color: var(--go-muted);
  max-width: 520px;
}

.go-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--go-navy) !important;
}

.go-text-link:hover {
  color: var(--go-gold-dark) !important;
}

.go-grid-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.go-col-card {
  display: block;
  color: inherit !important;
}

.go-col-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ece7df;
}

.go-col-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.go-col-card:hover img {
  transform: scale(1.06);
}

.go-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(21, 32, 51, 0.72);
  border: 1px solid var(--go-gold);
  color: var(--go-gold);
  display: grid;
  place-items: center;
  font-family: var(--go-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.go-col-card h3 {
  margin: 12px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--go-navy);
}

.go-why {
  background: var(--go-navy);
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.go-why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
}

.go-why-copy {
  padding: 78px 48px 78px 0;
}

.go-why-copy .go-kicker,
.go-shop-copy .go-kicker,
.go-news-copy .go-kicker {
  color: var(--go-gold);
}

.go-why-copy h2,
.go-shop-copy h2,
.go-shop-copy p {
  color: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.go-why-copy p,
.go-shop-copy p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin: 0 0 28px;
}

.go-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 18px;
  margin-top: 36px;
}

.go-stat strong {
  display: block;
  font-family: var(--go-serif);
  font-size: 34px;
  color: var(--go-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.go-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.go-why-photo {
  min-height: 100%;
  overflow: hidden;
  background: #1b2a40;
}

.go-why-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.55);
  transform-origin: center;
  display: block;
  max-width: none;
}

.go-process {
  background: #fff;
  text-align: center;
}

.go-center-head {
  margin-bottom: 48px;
}

.go-center-head p {
  margin: 0 auto;
}

.go-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.go-process-item {
  padding: 0 8px;
}

.go-step-num {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #f6efe4;
  color: var(--go-gold-dark);
  display: grid;
  place-items: center;
}

.go-step-num svg {
  width: 22px;
  height: 22px;
}

.go-shop {
  background: var(--go-cream-2);
}

.go-shop-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.go-shop-copy {
  background: var(--go-navy);
  color: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
}

.go-laptop {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  min-width: 0;
}

.go-laptop-screen {
  background: #1a1a1a;
  border-radius: 14px 14px 0 0;
  padding: 12px 12px 0;
  box-shadow: 0 18px 50px rgba(21, 32, 51, 0.16);
}

.go-laptop-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.go-laptop-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #444;
  display: block;
}

.go-laptop-bar i:nth-child(1) { background: #ff5f57; }
.go-laptop-bar i:nth-child(2) { background: #febc2e; }
.go-laptop-bar i:nth-child(3) { background: #28c840; }

.go-laptop-ui {
  background: #f7f4ef;
  min-height: 230px;
  padding: 14px;
}

.go-laptop-ui header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--go-navy);
  font-weight: 600;
}

.go-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.go-mini-grid img {
  width: 100%;
  height: 84px;
  max-height: 84px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.go-laptop-base {
  height: 14px;
  background: linear-gradient(#d9d4cc, #c2bbb0);
  border-radius: 0 0 16px 16px;
  position: relative;
}

.go-laptop-base:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 90px;
  height: 6px;
  background: #b7b0a6;
  border-radius: 6px 6px 0 0;
}

.go-perks {
  display: grid;
  gap: 18px;
}

.go-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.go-inspired {
  background: #fff;
}

.go-inspired h2 {
  margin-bottom: 0;
}

.go-inspire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.go-inspire-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.go-news {
  background: var(--go-cream-2);
  padding: 28px 0 80px;
}

.go-news-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-width: 0;
}
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(21, 32, 51, 0.04);
}

.go-news-copy h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.go-news-copy p {
  margin: 0;
  color: var(--go-muted);
  font-size: 14px;
}

.go-news-form {
  display: flex;
  gap: 8px;
}

.go-news-form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 1px solid var(--go-line);
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--go-font);
  font-size: 14px;
  background: #fff;
  color: var(--go-text);
  width: auto;
  max-width: none;
  margin: 0;
}

.go-news-form input:focus {
  outline: none;
  border-color: var(--go-gold);
}

.go-news-form .go-btn {
  height: 48px;
  white-space: nowrap;
}

.go-toast {
  margin-top: 10px;
  font-size: 13px;
  color: #2e7d4f;
}
.go-toast[hidden] {
  display: none;
}

.go-footer {
  background: var(--go-navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 0;
}

.go-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr 1.1fr;
  gap: 28px;
  padding-bottom: 40px;
}
.go-footer-grid > * {
  min-width: 0;
}
.go-footer a,
.go-contact-list {
  overflow-wrap: anywhere;
}

.go-footer .go-logo-text strong,
.go-footer .go-logo {
  color: #fff !important;
}

.go-footer .go-logo-text small {
  color: rgba(255, 255, 255, 0.55);
}

.go-footer-brand p {
  margin: 16px 0 18px;
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 280px;
}

.go-social {
  display: flex;
  gap: 8px;
}

.go-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff !important;
}

.go-social a:hover {
  background: var(--go-gold);
  color: var(--go-navy) !important;
}

.go-social svg {
  width: 14px;
  height: 14px;
}

.go-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 8px 0 16px;
  font-weight: 600;
}

.go-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.go-footer li + li {
  margin-top: 8px;
}

.go-footer a {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px;
}

.go-footer a:hover {
  color: var(--go-gold) !important;
}

.go-contact-list {
  font-size: 14px;
  line-height: 1.8;
}

.go-contact-list a {
  display: inline-block;
}

.go-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.go-wa {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  z-index: 10001;
}

.go-wa svg {
  width: 28px;
  height: 28px;
}

.go-search,
.go-mobile {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 36, 0.55);
  z-index: 10020;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 20px;
}

.go-search.is-open,
.go-mobile.is-open {
  display: flex;
}

.go-search-box,
.go-mobile-box {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--go-shadow);
}

.go-search-box input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--go-line);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 15px;
  font-family: var(--go-font);
  margin: 0;
}

.go-search-results {
  margin-top: 12px;
  max-height: 280px;
  overflow: auto;
}

.go-search-results a {
  display: block;
  padding: 10px 8px;
  border-bottom: 1px solid #f3eee8;
  color: var(--go-navy) !important;
}

.go-mobile-box {
  width: min(420px, 100%);
  max-height: 80vh;
  overflow: auto;
}

.go-mobile-box a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #f3eee8;
  color: var(--go-navy) !important;
  font-weight: 500;
}

.go-mobile-sub {
  padding-left: 12px;
}

.go-mobile-sub a {
  font-weight: 400;
  font-size: 14px;
  color: #666 !important;
}

body.go-lock {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .go-nav {
    display: none;
  }
  .go-hamburger {
    display: inline-block;
  }
  .go-hero-grid,
  .go-split-head,
  .go-why-grid,
  .go-shop-grid,
  .go-news-box,
  .go-footer-grid {
    grid-template-columns: 1fr;
  }
  .go-features-card,
  .go-grid-cols,
  .go-inspire-grid {
    grid-template-columns: 1fr 1fr;
  }
  .go-cat-shop {
    grid-template-columns: 1fr;
  }
  .go-cat-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .go-cat-shop-more {
    grid-column: 1;
  }
  .go-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .go-hero-photo img,
  .go-why-photo img {
    height: 380px;
    min-height: 380px;
  }
  .go-why-copy {
    padding: 48px 0 24px;
  }
  .go-topbar-left {
    gap: 14px;
  }
  .go-nav-actions .go-btn {
    display: none;
  }
  .go-navbar-inner {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .go-wrap {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .go-topbar {
    display: none;
  }
  .go-logo-mark {
    width: 40px;
    height: 40px;
  }
  .go-logo-text strong {
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  .go-features-card,
  .go-grid-cols,
  .go-inspire-grid,
  .go-steps,
  .go-stats {
    grid-template-columns: 1fr;
  }
  .go-feature + .go-feature {
    border-left: 0;
    border-top: 1px solid #f0ebe4;
    padding-top: 18px;
    margin-top: 8px;
  }
  .go-hero {
    padding-top: 28px;
  }
  .go-hero h1 {
    font-size: 36px;
  }
  .go-hero-photo img {
    height: 260px;
    border-radius: 18px;
  }
  .go-features {
    margin-top: 18px;
  }
  .go-navbar-inner {
    min-height: 68px;
  }
  .go-news-form {
    flex-direction: column;
  }
  .go-news-box {
    padding: 22px 16px;
  }
  .go-copy {
    flex-direction: column;
  }
  .go-logo-text small {
    display: none;
  }
  .go-cat-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .go-hero-chat small {
    display: none;
  }
  .go-news-copy {
    flex-direction: column;
  }
  .go-why-photo img {
    transform: none;
    min-height: 260px;
    height: 260px;
    max-width: 100%;
  }
  .go-shop-copy {
    padding: 32px 22px;
    min-height: 0;
  }
  .go-hero h1,
  .go-about-hero-copy h1,
  .go-news-hero-copy h1 {
    overflow-wrap: anywhere;
  }
  .go-gal-script,
  .go-sub-script {
    display: none;
  }
}

body:not(.go-home) .go-site-header {
  box-shadow: 0 1px 0 #f0ece6;
}

.go-hero-photo {
  position: relative;
  overflow: hidden;
}

.go-hero-chat {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: #fff;
  color: var(--go-navy) !important;
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(21, 32, 51, 0.16);
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
}

.go-hero-chat i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
}

.go-hero-chat i svg {
  width: 18px;
  height: 18px;
}

.go-hero-chat small {
  display: block;
  font-size: 10px;
  color: var(--go-muted);
  font-weight: 400;
}

.go-cat-shop {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  gap: 28px 28px;
  align-items: center;
}

.go-cat-shop.is-all {
  grid-template-columns: 1fr;
  align-items: start;
}

.go-cat-shop-copy h2 {
  font-family: var(--go-serif);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--go-navy);
  font-weight: 600;
}

.go-cat-shop-copy p {
  margin: 0;
  color: var(--go-muted);
  max-width: 340px;
  font-size: 15px;
}

.go-cat-shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px 16px;
}

.go-cat-shop-grid .go-col-media {
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(21, 32, 51, 0.06);
}

.go-cat-shop-grid .go-col-media img {
  aspect-ratio: 1;
  min-height: 148px;
}

.go-cat-shop-grid .go-badge {
  width: 52px;
  height: 52px;
  font-size: 14px;
  background: #152033;
  border: 1px solid var(--go-gold);
}

.go-cat-shop-grid .go-col-card h3 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

.go-cat-shop-more {
  grid-column: 2;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.go-cat-shop.is-all .go-cat-shop-more {
  grid-column: 1;
}

.go-stat-ring {
  width: 78px;
  height: 78px;
  border: 1.5px solid var(--go-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.go-stat-ring strong {
  font-family: var(--go-serif);
  font-size: 22px;
  color: var(--go-gold);
  line-height: 1;
}

.go-why .go-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.go-process-dark {
  background: linear-gradient(180deg, #152033 0%, #0f1724 100%);
  color: #fff;
}

.go-process-dark h2,
.go-process-dark .go-process-item h3 {
  color: #fff;
}

.go-process-dark p,
.go-process-dark .go-center-head p,
.go-process-dark .go-process-item p {
  color: rgba(255, 255, 255, 0.68);
}

.go-process-dark .go-kicker {
  color: var(--go-gold);
}

.go-process-dark .go-step-num {
  background: transparent;
  border: 1px solid var(--go-gold);
  color: var(--go-gold);
}

.go-news-copy {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.go-news-ico {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 1px solid var(--go-line);
  border-radius: 50%;
  color: var(--go-gold-dark);
  display: grid;
  place-items: center;
}

.go-news-ico svg {
  width: 20px;
  height: 20px;
}

.go-copy {
  align-items: center;
}

.go-pay {
  display: flex;
  gap: 8px;
  align-items: center;
}

.go-pay span {
  min-width: 42px;
  height: 26px;
  border-radius: 4px;
  background: #fff;
  color: var(--go-navy);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.go-crumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--go-muted);
  margin-bottom: 18px;
}

.go-crumb a {
  color: var(--go-muted) !important;
}

.go-category .go-why-photo {
  min-height: 520px;
  background-size: 175%;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.go-category .go-why-photo img {
  display: none;
}

.go-cat-more {
  margin-top: 28px;
}

.go-cat-more #contentBox {
  max-height: 4.8em;
  overflow: hidden;
  color: var(--go-muted);
  font-size: 15px;
  line-height: 1.7;
}

.go-cat-more #contentBox.expanded {
  max-height: none;
}

.go-news-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  color: #fff;
}

.go-news-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.go-news-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 30, 0.92) 0%, rgba(12, 18, 30, 0.55) 38%, rgba(12, 18, 30, 0.12) 68%, rgba(12, 18, 30, 0.04) 100%);
}

.go-news-hero-copy {
  position: relative;
  z-index: 1;
  padding: 96px 0 80px;
  max-width: 520px;
}

.go-news-hero-copy .go-kicker {
  color: var(--go-gold);
}

.go-news-hero-copy h1 {
  font-family: var(--go-serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #fff;
}

.go-news-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.go-news-main {
  background: var(--go-cream-2);
}

.go-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px 36px;
  align-items: start;
}

.go-news-main h2 {
  font-family: var(--go-serif);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--go-navy);
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.15;
}

.go-news-lead {
  margin: 0 0 22px;
  color: var(--go-muted);
  max-width: 640px;
}

.go-news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.go-news-filters button {
  border: 0;
  background: transparent;
  color: var(--go-muted);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
}

.go-news-filters button.is-on {
  background: var(--go-navy);
  color: #fff;
}

.go-news-list {
  display: grid;
  gap: 14px;
}

.go-news-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 132px 36px;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid #efe8de;
  border-radius: 16px;
  padding: 16px 16px 16px 18px;
}

.go-news-date strong {
  display: block;
  font-family: var(--go-serif);
  font-size: 28px;
  line-height: 1;
  color: var(--go-navy);
  font-weight: 600;
}

.go-news-date span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--go-muted);
}

.go-news-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--go-navy);
  font-weight: 600;
}

.go-news-body p {
  margin: 0 0 10px;
  color: var(--go-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.go-news-body em {
  display: inline-block;
  font-style: normal;
  font-size: 11px;
  color: var(--go-gold-dark);
  background: #f4eee4;
  border-radius: 999px;
  padding: 4px 10px;
}

.go-news-thumb {
  border-radius: 12px;
  overflow: hidden;
  height: 84px;
  background: #ece7df;
}

.go-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.go-news-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #e4ddd2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--go-navy);
}

.go-news-arrow svg {
  width: 14px;
  height: 14px;
}

.go-news-aside {
  display: grid;
  gap: 16px;
  margin-top: 138px;
}

.go-news-promo {
  background: linear-gradient(180deg, #1b2a40 0%, #152033 100%);
  color: #fff;
  border-radius: 18px;
  padding: 28px 24px;
}

.go-news-promo span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--go-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.go-news-promo h3 {
  font-family: var(--go-serif);
  font-size: 30px;
  margin: 0 0 16px;
  font-weight: 600;
}

.go-news-promo p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.go-news-promo p svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--go-gold);
}

.go-news-connect {
  background: #f7f3ec;
  border-radius: 18px;
  padding: 28px 24px;
}

.go-news-connect-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e4d8c6;
  color: var(--go-gold-dark);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.go-news-connect-ico svg {
  width: 20px;
  height: 20px;
}

.go-news-connect h3 {
  margin: 0 0 8px;
  font-family: var(--go-serif);
  font-size: 28px;
  color: var(--go-navy);
  font-weight: 600;
}

.go-news-connect p {
  margin: 0 0 16px;
  color: var(--go-muted);
  font-size: 14px;
}

.go-presence {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 64px 0;
}

.go-presence-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38);
}

.go-presence-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.go-presence .go-kicker {
  color: var(--go-gold);
}

.go-presence h2 {
  font-family: var(--go-serif);
  font-size: clamp(30px, 3.6vw, 42px);
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.15;
}

.go-presence p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.go-presence-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.go-presence-stats svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  color: var(--go-gold);
  display: block;
}

.go-presence-stats strong {
  display: block;
  font-family: var(--go-serif);
  font-size: 28px;
  font-weight: 600;
}

.go-presence-stats span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  .go-news-layout,
  .go-presence-inner {
    grid-template-columns: 1fr;
  }
  .go-news-aside {
    margin-top: 0;
  }
  .go-news-card {
    grid-template-columns: 64px minmax(0, 1fr) 36px;
  }
  .go-news-thumb {
    display: none;
  }
  .go-presence-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 720px) {
  .go-news-hero-copy {
    padding: 56px 0 48px;
  }
  .go-news-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .go-news-arrow {
    display: none;
  }
  .go-presence-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.go-about-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
}

.go-about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.go-about-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 30, 0.9) 0%, rgba(12, 18, 30, 0.5) 42%, rgba(12, 18, 30, 0.08) 72%);
}

.go-about-hero-copy {
  position: relative;
  z-index: 1;
  padding: 96px 0 80px;
  max-width: 560px;
}

.go-about-hero-copy .go-kicker {
  color: var(--go-gold);
}

.go-about-hero-copy h1 {
  font-family: var(--go-serif);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #fff;
}

.go-about-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
}

.go-about-story {
  background: #fff;
}

.go-about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.go-about-collage {
  position: relative;
  min-height: 420px;
}

.go-about-script {
  position: absolute;
  left: 0;
  top: 42%;
  font-family: var(--go-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: #c4b6a2;
  margin: 0;
  z-index: 2;
}

.go-about-circle {
  width: min(340px, 78%);
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(21, 32, 51, 0.12);
}

.go-about-circle img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.12);
  display: block;
}

.go-about-stack {
  position: absolute;
  right: 8px;
  bottom: 18px;
  width: min(180px, 42%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(21, 32, 51, 0.18);
  border: 6px solid #fff;
}

.go-about-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.go-about-story-copy h2 {
  font-family: var(--go-serif);
  font-size: clamp(30px, 3.6vw, 42px);
  color: var(--go-navy);
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.15;
}

.go-about-story-copy p {
  color: var(--go-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.go-about-points {
  background: #f7f4ef;
  padding: 36px 0;
}

.go-about-points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.go-about-points article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.go-about-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e4d8c6;
  color: var(--go-gold-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.go-about-ico svg {
  width: 20px;
  height: 20px;
}

.go-about-points h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--go-navy);
}

.go-about-points p {
  margin: 0;
  font-size: 13px;
  color: var(--go-muted);
  line-height: 1.45;
}

.go-about-av {
  background: var(--go-cream-2);
}

.go-about-av-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr 0.9fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 20px;
}

.go-about-av-panel {
  background: var(--go-navy);
  color: #fff;
  padding: 42px 36px;
}

.go-about-av-panel h2,
.go-about-values h2 {
  font-family: var(--go-serif);
  font-size: 32px;
  margin: 0 0 18px;
  font-weight: 600;
}

.go-about-av-panel h3 {
  margin: 16px 0 8px;
  font-size: 16px;
  color: var(--go-gold);
}

.go-about-av-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.65;
}

.go-about-av-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.go-about-values {
  background: #fff;
  padding: 42px 32px;
}

.go-about-values h2 {
  color: var(--go-navy);
}

.go-about-values p {
  color: var(--go-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.go-about-values ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.go-about-values li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--go-navy);
  font-size: 14.5px;
}

.go-about-values li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  border: 1.6px solid var(--go-gold-dark);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--go-gold) 0 4px, transparent 5px);
}

.go-about-awards {
  background: #fff;
}

.go-about-awards-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: center;
}

.go-about-awards-photo {
  border-radius: 16px;
  overflow: hidden;
}

.go-about-awards-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.go-about-awards h2 {
  font-family: var(--go-serif);
  font-size: clamp(30px, 3.4vw, 40px);
  color: var(--go-navy);
  margin: 0 0 10px;
  font-weight: 600;
}

.go-about-awards p {
  color: var(--go-muted);
  margin: 0 0 24px;
}

.go-about-award-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.go-about-award-list h3 {
  margin: 8px 0 2px;
  font-size: 14px;
  color: var(--go-navy);
}

.go-about-award-list small {
  color: var(--go-muted);
  font-size: 12px;
}

.go-about-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 56px 0;
}

.go-about-cta-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  filter: brightness(0.38);
}

.go-about-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.go-about-cta .go-kicker {
  color: var(--go-gold);
}

.go-about-cta h2 {
  font-family: var(--go-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 8px;
  font-weight: 600;
}

.go-about-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.go-about-cta-btn {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.go-about-cta-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1100px) {
  .go-about-story-grid,
  .go-about-av-grid,
  .go-about-awards-grid,
  .go-about-points-grid {
    grid-template-columns: 1fr;
  }
  .go-about-collage {
    min-height: 360px;
  }
  .go-about-award-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .go-about-hero-copy {
    padding: 56px 0 48px;
  }
  .go-about-points-grid,
  .go-about-award-list {
    grid-template-columns: 1fr;
  }
  .go-about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .go-about-script {
    font-size: 18px;
    top: 8px;
    left: 8px;
  }
}

.go-contact-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  color: #fff;
}

.go-contact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.go-contact-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 30, 0.92) 0%, rgba(12, 18, 30, 0.52) 42%, rgba(12, 18, 30, 0.1) 72%);
}

.go-contact-hero-copy {
  position: relative;
  z-index: 1;
  padding: 92px 0 72px;
  max-width: 540px;
}

.go-contact-hero-copy .go-kicker {
  color: var(--go-gold);
}

.go-contact-hero-copy h1 {
  font-family: var(--go-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #fff;
}

.go-contact-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.65;
}

.go-contact-loc {
  background: var(--go-cream-2);
  padding-bottom: 24px;
}

.go-contact-loc-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}

.go-contact-loc h2,
.go-contact-form-sec h2 {
  font-family: var(--go-serif);
  font-size: clamp(30px, 3.6vw, 42px);
  color: var(--go-navy);
  margin: 0 0 12px;
  font-weight: 600;
}

.go-contact-loc p,
.go-contact-lead {
  margin: 0;
  color: var(--go-muted);
  max-width: 460px;
}

.go-contact-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  background: #e8eee6;
  box-shadow: 0 12px 32px rgba(21, 32, 51, 0.08);
}

.go-contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.go-contact-map-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #fff;
  color: var(--go-navy) !important;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(21, 32, 51, 0.12);
}

.go-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.go-contact-cards article {
  background: #fff;
  border: 1px solid #efe8de;
  border-radius: 16px;
  padding: 22px 20px;
}

.go-contact-cards h3 {
  margin: 12px 0 6px;
  font-size: 16px;
  color: var(--go-navy);
}

.go-contact-cards p,
.go-contact-cards a {
  margin: 0;
  color: var(--go-muted);
  font-size: 14px;
  line-height: 1.55;
}

.go-contact-cards a:hover {
  color: var(--go-gold-dark);
}

.go-contact-form-sec {
  background: #fff;
}

.go-contact-form-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.go-contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0 14px;
}

.go-contact-form label {
  position: relative;
  display: block;
}

.go-contact-icon {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 16px;
  height: 16px;
  color: #b3a898;
}

.go-contact-form input,
.go-contact-form select,
.go-contact-form textarea {
  width: 100%;
  border: 1px solid #e7e0d6;
  border-radius: 10px;
  background: #fff;
  padding: 14px 14px 14px 40px;
  font: inherit;
  font-size: 14px;
  color: var(--go-navy);
}

.go-contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.go-contact-form input:focus,
.go-contact-form select:focus,
.go-contact-form textarea:focus {
  outline: none;
  border-color: var(--go-gold);
}

.go-contact-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.go-contact-actions small {
  color: var(--go-muted);
  font-size: 13px;
}

.go-contact-aside {
  background: linear-gradient(180deg, rgba(21, 32, 51, 0.82), rgba(15, 23, 36, 0.92)), url("../images/home/inspire-3.jpg") center/cover;
  color: #fff;
  border-radius: 18px;
  padding: 36px 28px;
  min-height: 420px;
  position: relative;
}

.go-contact-aside span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--go-gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.go-contact-aside h3 {
  font-family: var(--go-serif);
  font-size: 34px;
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.15;
}

.go-contact-aside p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.6;
}

.go-contact-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.go-contact-aside li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.go-contact-aside li svg {
  width: 18px;
  height: 18px;
  color: var(--go-gold);
  flex: none;
}

.go-contact-wa {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff !important;
  border-radius: 999px;
  padding: 8px 12px 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.go-contact-wa svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 980px) {
  .go-contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .go-contact-hero-copy {
    padding: 56px 0 48px;
  }
  .go-contact-loc-grid,
  .go-contact-form-grid,
  .go-contact-cards,
  .go-contact-fields {
    grid-template-columns: 1fr;
  }
  .go-contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.go-sub-hero {
  position: relative;
  min-height: 280px;
  color: #fff;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.go-plist-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.go-plist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.go-gal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}




