:root {
  --bg: #f5f5f2;
  --panel: #ffffff;
  --panel-alt: #f1f0eb;
  --border: #dedbd3;
  --text: #161616;
  --muted: #76716a;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --radius-lg: 1.2rem;
  --radius-md: 0.8rem;
  --shadow-soft: 0 16px 40px rgba(15, 15, 10, 0.12);
  --transition: 0.18s ease-out;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0 0, #e2e8f0 0, transparent 55%),
    radial-gradient(circle at 100% 100%, #e0f2fe 0, transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.gl-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gl-main {
  min-height: 60vh;
}

/* Header */

.gl-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(210, 205, 193, 0.9);
  background: rgba(245, 245, 242, 0.96);
  backdrop-filter: blur(16px);
}

.gl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.7rem 0;
}

.gl-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.gl-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 40%;
  border: 1px solid #d4d4cf;
  background:
    linear-gradient(145deg, #fefdf7, #ece7dd);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15, 15, 10, 0.12);
}

.gl-logo-symbol {
  width: 18px;
  height: 12px;
  border-radius: 6px;
  border: 1.5px solid #111827;
  position: relative;
}

.gl-logo-symbol::before,
.gl-logo-symbol::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 1px solid #111827;
}

.gl-logo-symbol::before {
  left: 2px;
}

.gl-logo-symbol::after {
  right: 2px;
}

.gl-logo-text {
  display: flex;
  flex-direction: column;
}

.gl-logo-title {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gl-logo-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.gl-nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.86rem;
}

.gl-nav a {
  color: var(--muted);
  position: relative;
  padding: 0.25rem 0;
}

.gl-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.2rem;
  height: 1px;
  transform-origin: center;
  transform: scaleX(0);
  background: #111827;
  transition: transform var(--transition);
}

.gl-nav a:hover {
  color: #111827;
}

.gl-nav a:hover::after {
  transform: scaleX(1);
}

.gl-nav-toggle {
  display: none;
  background: none;
  border-radius: 999px;
  border: 1px solid #d4d4cf;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
}

.gl-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  margin: 3px 0;
}

/* Hero */

.gl-hero {
  padding: 2.5rem 0 2rem;
}

.gl-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.gl-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 0.4rem;
}

.gl-hero-main h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  letter-spacing: 0.01em;
}

.gl-hero-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 34rem;
}

.gl-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: flex-end;
  margin-bottom: 0.9rem;
}

.gl-search-label {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.gl-search input {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  font: inherit;
  background: #fbfaf6;
  color: var(--text);
}

.gl-search input::placeholder {
  color: #a3a3a1;
}

.gl-search input:focus {
  outline: 1px solid var(--accent);
  outline-offset: 1px;
}

.gl-search button {
  border-radius: 999px;
  border: 1px solid #111827;
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  background: #111827;
  color: #f9fafb;
  cursor: pointer;
}

.gl-search button:hover {
  background: #1f2933;
}

.gl-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.gl-meta-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.gl-meta-value {
  font-size: 0.9rem;
}

.gl-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.gl-hero-image {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e5e3dd;
  box-shadow: var(--shadow-soft);
}

.gl-hero-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gl-hero-note {
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  background: var(--panel-alt);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sections */

.gl-section {
  padding: 3rem 0;
}

.gl-section-alt {
  background: radial-gradient(circle at top, #f1f0eb 0, transparent 55%);
}

.gl-section-header {
  margin-bottom: 1.5rem;
}

.gl-section-header h1,
.gl-section-header h2 {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.gl-section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gl-section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

/* Grid */

.gl-grid {
  display: grid;
  gap: 1.3rem;
}

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

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

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

.gl-grid-align-top {
  align-items: flex-start;
}

/* Outline cards */

.gl-outline-grid {
  margin-top: 0.6rem;
}

.gl-outline-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fbfaf6;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(15, 15, 10, 0.06);
  font-size: 0.9rem;
}

.gl-outline-card h2,
.gl-outline-card h3 {
  margin-top: 0;
}

.gl-outline-card p {
  margin: 0.3rem 0 0.7rem;
  color: var(--muted);
}

.gl-outline-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Products */

.gl-product-grid {
  margin-top: 0.6rem;
}

.gl-product {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 15, 10, 0.08);
  font-size: 0.9rem;
}

.gl-product-media img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.gl-product-body {
  padding: 0.85rem 1rem 1rem;
}

.gl-price {
  font-weight: 600;
  color: #b45309;
}

/* Map */

.gl-map {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: var(--shadow-soft);
}

.gl-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.gl-map-large iframe {
  height: 260px;
}

.gl-map-block {
  margin-top: 2rem;
}

/* Links & buttons */

.gl-link-inline {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #111827;
}

.gl-link-inline::after {
  content: "↗";
  margin-left: 0.3rem;
}

.gl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #111827;
  padding: 0.55rem 1.4rem;
  font-size: 0.84rem;
  font-weight: 500;
  background: #111827;
  color: #f9fafb;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.gl-btn:hover {
  background: #1f2933;
}

.gl-btn-primary {
  /* same as .gl-btn, kept for clarity */
}

.gl-btn-full {
  width: 100%;
}

.gl-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Form */

.gl-form {
  font-size: 0.9rem;
}

.gl-form-row {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.gl-form-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gl-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gl-form input,
.gl-form select,
.gl-form textarea {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 0.5rem 0.85rem;
  font: inherit;
  background: #fbfaf6;
  color: var(--text);
}

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

.gl-form input:focus,
.gl-form select:focus,
.gl-form textarea:focus {
  outline: 1px solid var(--accent);
  outline-offset: 1px;
}

.gl-form-note {
  margin: 0.1rem 0 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */

.gl-footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(210, 205, 193, 0.9);
  background: #f3f1eb;
}

.gl-footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2rem 0 1.3rem;
  font-size: 0.9rem;
}

.gl-footer-col h3,
.gl-footer-col h4 {
  margin-top: 0;
}

.gl-footer-col p {
  margin: 0 0 0.4rem;
  color: var(--muted);
}

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

.gl-footer-col li + li {
  margin-top: 0.25rem;
}

.gl-footer a {
  color: #111827;
}

.gl-footer-bottom {
  border-top: 1px solid rgba(210, 205, 193, 0.9);
  text-align: center;
  padding: 0.9rem 0 1.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Cookie banner */

.gl-cookie {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 960px;
  width: 100%;
  background: #111827;
  color: #f9fafb;
  border-top: 1px solid #4b5563;
  box-shadow: 0 -12px 30px rgba(15, 15, 10, 0.5);
  padding: 0.85rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.8rem;
  z-index: 50;
}

.gl-cookie-text p {
  margin: 0 0 0.3rem;
}

.gl-cookie-text a {
  color: #bfdbfe;
  text-decoration: underline;
}

.gl-cookie-actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}

.gl-cookie-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.38rem 1.05rem;
  font-size: 0.76rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.gl-cookie-btn-primary {
  background: #f9fafb;
  color: #111827;
}

.gl-cookie-btn-secondary {
  background: transparent;
  color: #f9fafb;
  border-color: #4b5563;
}

.gl-cookie-btn-secondary:hover {
  background: rgba(15, 23, 42, 0.8);
}

.gl-cookie--hidden {
  display: none !important;
}

/* General */

ul {
  padding-left: 1.1rem;
}

.gl-section p {
  margin-bottom: 0.7rem;
}
