/* GLOBAL FAME INC — mint stone + deep teal (distinct from prior output sites) */
:root {
  --bg: #f3f1ea;
  --surface: #ffffff;
  --ink: #1a1f1e;
  --muted: #5c6563;
  --teal: #0d4f4f;
  --teal-2: #126060;
  --sand: #c4a574;
  --line: rgba(13, 79, 79, 0.12);
  --shadow: 0 18px 50px rgba(13, 79, 79, 0.08);
  --radius: 18px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 12% -10%, rgba(196, 165, 116, 0.18), transparent 55%),
    var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-2);
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 241, 234, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--teal);
  color: #f4fffe;
  border-color: rgba(13, 79, 79, 0.35);
}

.btn--primary:hover {
  background: var(--teal-2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--teal);
  border-color: rgba(13, 79, 79, 0.22);
}

.btn--ghost:hover {
  background: #fff;
}

.section {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.section__kicker {
  margin: 0 0 0.45rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sand);
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section__lead {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

/* Hero carousel — 3 slides */
.gf-hero {
  position: relative;
  margin: 1.25rem auto 0;
  width: min(var(--max), calc(100% - 2.5rem));
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: min(640px, 88vh);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.gf-hero__slides {
  position: absolute;
  inset: 0;
}

.gf-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 720ms ease;
  pointer-events: none;
}

.gf-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.gf-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, rgba(13, 79, 79, 0.78) 0%, rgba(13, 79, 79, 0.35) 42%, rgba(26, 31, 30, 0.55) 100%);
}

.gf-hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: min(640px, 88vh);
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 3.25rem);
}

.gf-hero__copy {
  max-width: 46rem;
  color: #f7fffe;
}

.gf-hero__copy h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.gf-hero__copy p {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  opacity: 0.94;
  max-width: 52ch;
}

.gf-hero .btn--ghost {
  color: #f7fffe;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.gf-hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.gf-hero .btn--primary {
  background: #f4f7f6;
  color: var(--teal);
  border-color: rgba(255, 255, 255, 0.35);
}

.gf-hero .btn--primary:hover {
  background: #ffffff;
}

.gf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.gf-hero__side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}

.gf-hero__side:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-50%) scale(1.03);
}

.gf-hero__side--prev {
  left: clamp(0.65rem, 2vw, 1.15rem);
}

.gf-hero__side--next {
  right: clamp(0.65rem, 2vw, 1.15rem);
}

.gf-hero__controls {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.gf-hero__dots {
  display: flex;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.gf-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
}

.gf-hero__dot.is-active {
  background: #fff;
  transform: scale(1.12);
}

@media (max-width: 720px) {
  .gf-hero__side {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .gf-hero__controls {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: column;
  }
}

/* Product grid — 4 columns, equal cards, empty cells */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(13, 79, 79, 0.05);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 1rem 1.05rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 5.5rem;
}

.product-card__body h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.product-card__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.product-grid__cell--empty {
  min-height: 1px;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid__cell--empty {
    display: none;
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Split: company */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.split__media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: clamp(260px, 42vw, 420px);
  object-fit: cover;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split__media img {
    height: 260px;
  }
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, rgba(13, 79, 79, 0.04), transparent);
  border-block: 1px solid var(--line);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 12px 34px rgba(13, 79, 79, 0.06);
  min-height: 100%;
}

.review__head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196, 165, 116, 0.55);
}

.review__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.review__role {
  font-size: 0.82rem;
  color: var(--muted);
}

.review__stars {
  color: var(--sand);
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.review__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* Message split */
.message-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.25rem, 3.5vw, 2.5rem);
  align-items: stretch;
  margin-top: 1.75rem;
}

.message-split__visual {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.message-split__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.message-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.15rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.88rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fbfcfb;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 900px) {
  .message-split {
    grid-template-columns: 1fr;
  }

  .message-split__visual {
    min-height: 220px;
  }

  .message-split__visual img {
    min-height: 220px;
  }
}

/* Contact page */
.contact-banner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 1.25rem auto 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-banner img {
  width: 100%;
  height: min(360px, 42vw);
  object-fit: cover;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.contact-split__media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-split__media img {
  width: 100%;
  height: clamp(280px, 36vw, 420px);
  object-fit: cover;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.15rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
}

.contact-card dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-card dt {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 800;
}

.contact-card dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.contact-card a {
  font-weight: 650;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

/* About */
.about-hero {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 1.25rem auto 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-hero img {
  width: 100%;
  height: min(420px, 52vw);
  object-fit: cover;
}

.about-stack {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.about-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  box-shadow: var(--shadow);
}

.about-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.about-panel__text {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.about-panel__text p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.about-panel__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-panel__media img {
    min-height: 220px;
  }
}

/* Footer */
.site-footer {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: #0b1f1e;
  color: rgba(247, 255, 254, 0.86);
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 2rem;
  border-top: 4px solid var(--sand);
}

.site-footer a {
  color: rgba(247, 255, 254, 0.92);
}

.site-footer__grid {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer__brand img {
  height: 44px;
  width: auto;
}

.site-footer__brand p {
  margin: 0.75rem 0 0;
  color: rgba(247, 255, 254, 0.72);
  max-width: 42ch;
  font-size: 0.92rem;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 165, 116, 0.95);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer ul a {
  text-decoration: none;
  font-weight: 650;
}

.site-footer ul a:hover {
  text-decoration: underline;
}

.social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.72rem;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer__fine {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(247, 255, 254, 0.55);
}

@media (max-width: 980px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
