/* Grand Metro Fashions — editorial warm palette (burgundy / stone) */
:root {
  --gmf-bg: #f3efe8;
  --gmf-surface: #faf8f4;
  --gmf-ink: #1c1614;
  --gmf-muted: rgba(28, 22, 20, 0.68);
  --gmf-accent: #7c2d3a;
  --gmf-accent-2: #b08d57;
  --gmf-line: rgba(28, 22, 20, 0.1);
  --gmf-shadow: 0 22px 50px rgba(28, 22, 20, 0.12);
  --gmf-radius: 20px;
  --gmf-max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--gmf-ink);
  background: var(--gmf-bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

.gmf-shell {
  width: min(var(--gmf-max), calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Header */
.gmf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 239, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gmf-line);
}

.gmf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.gmf-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--gmf-ink);
  font-weight: 750;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.gmf-brand img,
.gmf-brand svg {
  width: 168px;
  height: auto;
  display: block;
  color: var(--gmf-accent);
}

.gmf-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
}

.gmf-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.82;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.gmf-nav a:hover,
.gmf-nav a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: var(--gmf-accent-2);
}

@media (max-width: 640px) {
  .gmf-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero carousel */
.gmf-hero {
  position: relative;
  min-height: min(700px, 90vh);
  border-radius: var(--gmf-radius);
  overflow: hidden;
  isolation: isolate;
  margin: 1.25rem auto 0;
  width: min(var(--gmf-max), calc(100% - 2.5rem));
}

.gmf-hero__slides {
  position: absolute;
  inset: 0;
}

.gmf-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 720ms ease;
}

.gmf-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.gmf-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gmf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(900px 520px at 18% 22%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(105deg, rgba(28, 22, 20, 0.72) 0%, rgba(28, 22, 20, 0.28) 52%, rgba(124, 45, 58, 0.45) 100%);
}

.gmf-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: clamp(3rem, 7vw, 5.25rem) clamp(1.25rem, 4vw, 2rem) 5rem;
  color: #fff;
}

.gmf-hero__kicker {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.74rem;
  opacity: 0.92;
  margin: 0 0 0.85rem;
}

.gmf-hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.gmf-hero__lead {
  max-width: 46ch;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  opacity: 0.9;
  margin: 0 0 1.75rem;
}

.gmf-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.gmf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.94rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
  font-family: inherit;
}

.gmf-btn:hover {
  transform: translateY(-1px);
}

.gmf-btn--light {
  background: #fff;
  color: var(--gmf-ink);
}

.gmf-btn--light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.gmf-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.gmf-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.gmf-btn--solid {
  background: var(--gmf-accent);
  color: #fff;
  border-color: transparent;
}

.gmf-btn--solid:hover {
  filter: brightness(1.05);
}

.gmf-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 150ms ease, transform 150ms ease;
}

.gmf-hero__arrow:hover {
  background: rgba(0, 0, 0, 0.35);
}

.gmf-hero__arrow--prev {
  left: 0.85rem;
}

.gmf-hero__arrow--next {
  right: 0.85rem;
}

.gmf-hero__arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.gmf-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.55rem;
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.gmf-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.gmf-hero__dot.is-active {
  background: #fff;
  transform: scale(1.12);
}

@media (max-width: 720px) {
  .gmf-hero {
    border-radius: 16px;
    min-height: min(620px, 88vh);
    margin-top: 0.75rem;
    width: calc(100% - 2rem);
  }

  .gmf-hero__arrow {
    width: 38px;
    height: 38px;
  }

  .gmf-hero__arrow--prev {
    left: 0.5rem;
  }

  .gmf-hero__arrow--next {
    right: 0.5rem;
  }
}

/* Sections */
.gmf-section {
  padding: clamp(3rem, 5.5vw, 5rem) 0;
}

.gmf-section__head {
  margin-bottom: 1.35rem;
}

.gmf-section__head--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.gmf-kicker {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gmf-muted);
  margin: 0 0 0.55rem;
}

.gmf-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--gmf-ink);
}

/* Product grid — fixed 4 columns, equal cards */
.gmf-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.05rem;
}

.gmf-card {
  border-radius: var(--gmf-radius);
  overflow: hidden;
  background: var(--gmf-surface);
  border: 1px solid var(--gmf-line);
  box-shadow: var(--gmf-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gmf-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gmf-card__body {
  padding: 1rem 1.05rem 1.15rem;
  display: grid;
  gap: 0.3rem;
  flex: 1;
}

.gmf-card__title {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.gmf-card__desc {
  margin: 0;
  color: var(--gmf-muted);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .gmf-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gmf-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* About strip on home */
.gmf-split-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.35rem;
  align-items: center;
}

.gmf-split-intro__media {
  border-radius: var(--gmf-radius);
  overflow: hidden;
  border: 1px solid var(--gmf-line);
  box-shadow: var(--gmf-shadow);
  min-height: 280px;
}

.gmf-split-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gmf-split-intro__copy {
  padding: 0.25rem 0;
}

.gmf-split-intro__copy p {
  margin: 0 0 0.85rem;
  color: var(--gmf-muted);
}

@media (max-width: 900px) {
  .gmf-split-intro {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.gmf-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.05rem;
}

.gmf-review {
  border-radius: var(--gmf-radius);
  padding: 1.2rem 1.2rem 1.1rem;
  background: var(--gmf-surface);
  border: 1px solid var(--gmf-line);
  box-shadow: var(--gmf-shadow);
  min-height: 100%;
}

.gmf-review__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gmf-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(176, 141, 87, 0.35);
}

.gmf-review__name {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gmf-review__role {
  font-size: 0.88rem;
  color: var(--gmf-muted);
  margin-top: 0.1rem;
}

.gmf-review__stars {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  color: var(--gmf-accent-2);
}

.gmf-review__text {
  margin: 0;
  color: var(--gmf-muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .gmf-testimonials {
    grid-template-columns: 1fr;
  }
}

/* Message split */
.gmf-split-msg {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 1.1rem;
  align-items: stretch;
}

.gmf-split-msg__media {
  border-radius: var(--gmf-radius);
  overflow: hidden;
  border: 1px solid var(--gmf-line);
  box-shadow: var(--gmf-shadow);
  min-height: 320px;
}

.gmf-split-msg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gmf-form {
  border-radius: var(--gmf-radius);
  padding: 1.25rem;
  background: var(--gmf-surface);
  border: 1px solid var(--gmf-line);
  box-shadow: var(--gmf-shadow);
  display: grid;
  gap: 0.85rem;
}

.gmf-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gmf-field {
  display: grid;
  gap: 0.32rem;
}

.gmf-field__label {
  font-size: 0.88rem;
  color: var(--gmf-muted);
}

.gmf-field__input,
.gmf-field__textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--gmf-line);
  padding: 0.82rem 0.92rem;
  background: #fff;
  outline: none;
  font: inherit;
}

.gmf-field__textarea {
  resize: vertical;
  min-height: 140px;
}

.gmf-field__input:focus,
.gmf-field__textarea:focus {
  border-color: rgba(124, 45, 58, 0.45);
}

.gmf-form__hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gmf-muted);
}

@media (max-width: 980px) {
  .gmf-split-msg {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gmf-form__row {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.gmf-contact-banner {
  width: min(var(--gmf-max), calc(100% - 2.5rem));
  margin: 1.25rem auto 0;
  border-radius: var(--gmf-radius);
  overflow: hidden;
  border: 1px solid var(--gmf-line);
  box-shadow: var(--gmf-shadow);
  max-height: 360px;
}

.gmf-contact-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.gmf-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 0.5rem;
}

.gmf-contact-split__media {
  border-radius: var(--gmf-radius);
  overflow: hidden;
  border: 1px solid var(--gmf-line);
  box-shadow: var(--gmf-shadow);
}

.gmf-contact-split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.gmf-contact-panel {
  border-radius: var(--gmf-radius);
  padding: 1.5rem;
  background: var(--gmf-surface);
  border: 1px solid var(--gmf-line);
  box-shadow: var(--gmf-shadow);
}

.gmf-contact-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
}

.gmf-contact-panel p,
.gmf-contact-panel li {
  color: var(--gmf-muted);
  margin: 0.4rem 0;
}

.gmf-contact-panel a {
  color: var(--gmf-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 45, 58, 0.25);
}

.gmf-contact-panel a:hover {
  border-bottom-color: var(--gmf-accent);
}

.gmf-contact-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .gmf-contact-split {
    grid-template-columns: 1fr;
  }
}

/* About page */
.gmf-about-hero {
  width: min(var(--gmf-max), calc(100% - 2.5rem));
  margin: 1.25rem auto 0;
  border-radius: var(--gmf-radius);
  overflow: hidden;
  border: 1px solid var(--gmf-line);
  box-shadow: var(--gmf-shadow);
}

.gmf-about-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.gmf-about-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gmf-about-copy p {
  color: var(--gmf-muted);
  margin: 0 0 0.9rem;
  font-size: 1.02rem;
}

/* Footer */
.gmf-footer {
  margin-top: 0.5rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--gmf-line);
  background: linear-gradient(180deg, transparent, rgba(124, 45, 58, 0.04));
}

.gmf-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 2rem;
}

.gmf-footer__logo {
  display: inline-flex;
  margin-bottom: 0.55rem;
}

.gmf-footer__logo svg {
  width: 200px;
  height: auto;
  color: var(--gmf-accent);
}

.gmf-footer__desc {
  margin: 0 0 1rem;
  color: var(--gmf-muted);
  max-width: 40ch;
  font-size: 0.95rem;
}

.gmf-footer__title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gmf-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--gmf-muted);
  font-size: 0.95rem;
}

.gmf-footer__list a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.gmf-footer__list a:hover {
  border-bottom-color: rgba(28, 22, 20, 0.25);
}

.gmf-footer__social {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.gmf-social {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 22, 20, 0.05);
  border: 1px solid var(--gmf-line);
  color: inherit;
  text-decoration: none;
}

.gmf-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.88;
}

.gmf-social:hover {
  background: rgba(124, 45, 58, 0.08);
}

.gmf-footer__bottom {
  padding: 1rem 0 1.35rem;
  border-top: 1px solid var(--gmf-line);
}

.gmf-footer__copy {
  margin: 0;
  text-align: center;
  color: var(--gmf-muted);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .gmf-footer__grid {
    grid-template-columns: 1fr;
  }
}
