:root {
  --galp: #ef5b3f;
  --galp-dark: #c9432d;
  --ink: #17212b;
  --muted: #68737d;
  --cream: #f7f5f1;
  --white: #ffffff;
  --line: #e5e2dc;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.05;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--galp);
  color: white;
  font-size: 25px;
  font-weight: 900;
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.18);
}

.brand strong,
.brand b {
  display: block;
  letter-spacing: .07em;
}

.brand strong { font-size: 10px; color: #65707a; }
.brand b { font-size: 17px; color: var(--ink); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:not(.nav-cta) {
  transition: color .2s ease;
}

.main-nav a:not(.nav-cta):hover { color: var(--galp); }

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--galp);
  color: white;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 27px;
  cursor: pointer;
}

.hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #222;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10,17,23,.78) 0%, rgba(10,17,23,.52) 42%, rgba(10,17,23,.08) 80%),
    linear-gradient(0deg, rgba(0,0,0,.28), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-top: 30px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--galp);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero .eyebrow { color: #ffb4a4; }

.hero h1 {
  max-width: 720px;
  margin: 13px 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero h1 span { color: #ff8a73; }

.hero p {
  max-width: 540px;
  margin: 0 0 30px;
  font-size: 19px;
  color: rgba(255,255,255,.88);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s, background .2s;
}

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

.btn-primary { background: var(--galp); color: white; }
.btn-primary:hover { background: var(--galp-dark); }

.btn-light { background: white; color: var(--ink); }

.hero-badge {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 2;
  color: white;
  text-align: right;
}

.hero-badge span {
  display: block;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.hero-badge small { opacity: .8; }

.intro {
  padding: 80px 0;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

h2 {
  margin: 8px 0 15px;
  font-size: clamp(32px, 4vw, 51px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section { padding: 100px 0; }

.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading p { color: var(--muted); margin: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(20,30,40,.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  background: #fff0ec;
  color: var(--galp);
  font-size: 25px;
}

.service-card h3 { margin: 0 0 8px; font-size: 22px; }
.service-card p { margin: 0; color: var(--muted); }

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--ink);
  color: white;
}

.feature-image img { height: 100%; }
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(35px, 7vw, 110px);
}

.feature-copy h2 { max-width: 590px; }
.feature-copy p { max-width: 540px; color: #b9c1c7; font-size: 18px; }

.text-link {
  width: fit-content;
  margin-top: 20px;
  color: #ff947e;
  font-weight: 800;
}
.text-link span { margin-left: 8px; }

.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
  min-height: 330px;
}

.gallery-grid img {
  height: 100%;
  transition: transform .5s ease;
}

.gallery-grid figure:hover img { transform: scale(1.035); }

.gallery-main { grid-row: span 2; min-height: 678px !important; }

.location {
  padding: 100px 0;
  background: white;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.location-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 25px;
}

.map-card {
  min-height: 360px;
  border-radius: 25px;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(239,91,63,.96), rgba(195,58,39,.96)),
    repeating-linear-gradient(45deg, transparent 0 25px, rgba(255,255,255,.08) 26px 27px);
  color: white;
  box-shadow: 0 25px 60px rgba(239,91,63,.2);
}

.map-pin {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: white;
  color: var(--galp);
  font-size: 20px;
}

.map-card strong { font-size: 22px; line-height: 1.2; }
.map-card span { margin-top: 7px; opacity: .9; }
.map-card small { margin-top: 28px; opacity: .72; }

.contact {
  padding: 75px 0;
  background: #151d24;
  color: white;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.contact h2 { margin-bottom: 5px; }
.contact p { margin: 0; color: #aeb7be; }

.contact-details {
  display: flex;
  gap: 55px;
}

.contact-details div span,
.contact-details div strong {
  display: block;
}

.contact-details span {
  color: #89949c;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-details strong {
  margin-top: 5px;
  font-size: 17px;
}

.footer {
  background: #0d1318;
  color: #d9dee1;
  padding: 28px 0;
  font-size: 12px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer strong,
.footer span { display: block; }

.footer span { color: #77828a; margin-top: 4px; }
.footer p { margin: 0; color: #77828a; }

@media (max-width: 850px) {
  .container { width: min(var(--max), calc(100% - 32px)); }

  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    padding: 18px 20px 25px;
    background: white;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .nav-cta { text-align: center; }

  .hero { min-height: 610px; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(10,17,23,.82), rgba(10,17,23,.35));
  }
  .hero-badge { display: none; }

  .intro-grid,
  .location-grid { grid-template-columns: 1fr; gap: 30px; }

  .service-grid { grid-template-columns: 1fr; }

  .feature { grid-template-columns: 1fr; }
  .feature-image { min-height: 360px; }
  .feature-copy { padding: 60px 30px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-main { grid-row: auto; grid-column: 1 / -1; min-height: 380px !important; }
  .gallery-grid figure { min-height: 260px; }

  .contact-inner,
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .contact-details { flex-wrap: wrap; gap: 30px; }
}

@media (max-width: 520px) {
  .brand b { font-size: 14px; }
  .brand-mark { width: 38px; height: 38px; }

  .hero { min-height: 570px; }
  .hero h1 { font-size: 45px; }
  .hero p { font-size: 17px; }

  .section, .location { padding: 70px 0; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-main { grid-column: auto; min-height: 330px !important; }

  .map-card { min-height: 300px; padding: 32px; }
}
