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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f4f6;
  color: #111827;
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  background: #0f172a;
  color: #e5e7eb;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.4);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand-logo {
  height: 90px;
  width: auto;
}

.tagline {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #9ca3af;
}

.header-contact {
  text-align: right;
  font-size: 0.9rem;
}

.header-contact span {
  font-weight: 600;
}

.header-contact a {
  color: #e5e7eb;
}

.header-badges {
  display: flex;
  align-items: center;
}

.badge-logo {
  height: 48px;
  width: auto;
}

/* Navigation */

.site-nav {
  background: #020617;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.5rem 0.25rem;
}

.nav-link {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #e5e7eb;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background: #0f172a;
}

.nav-link.active {
  background: #0f766e;
  color: #ecfeff;
}

/* Main layout */

.site-main {
  padding: 2.5rem 0 3.5rem;
}

/* Hero (Home page) */

.hero {
  padding-bottom: 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  margin: 0 0 0.75rem;
  font-size: 2.1rem;
  color: #0f172a;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero-text p {
  margin: 0 0 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.75rem 0 0.25rem;
}

.hero-hours {
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-media {
  text-align: right;
}

.hero-image {
  border-radius: 0.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn.primary {
  background: #0f766e;
  color: #ecfeff;
  border-color: #0f766e;
}

.btn.primary:hover {
  background: #115e59;
  border-color: #115e59;
}

.btn.ghost {
  background: transparent;
  color: #0f766e;
  border-color: #0f766e;
}

.btn.ghost:hover {
  background: rgba(15, 118, 110, 0.06);
}

.btn.inline {
  margin-top: 0.5rem;
  background: #16a34a;
  border-color: #16a34a;
  color: #ecfdf5;
}

.btn.inline:hover {
  background: #15803d;
  border-color: #15803d;
}

/* Cards & highlight sections */

.highlights {
  margin-top: 1rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.card h2,
.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: #0f172a;
}

.card p {
  margin: 0 0 0.75rem;
}

.card ul {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.1rem;
}

.card li {
  margin-bottom: 0.35rem;
}

/* Brands strip */

.brands {
  margin-top: 3rem;
}

.brands-title {
  text-align: center;
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  color: #0f172a;
}

.brands-text {
  text-align: center;
  margin: 0 0 1.5rem;
  color: #4b5563;
}

.brands-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.brands-logos img {
  height: 32px;
  width: auto;
  filter: grayscale(0.1);
  opacity: 0.9;
}

/* Page header (inner pages) */

.page-header {
  margin-bottom: 1.5rem;
}

.page-header h1 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
  color: #0f172a;
}

.page-intro {
  margin: 0;
  color: #4b5563;
  max-width: 46rem;
}

/* Inner page layout (default) */

.page-content .content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 1.5rem;
}

.content-main {
  width: 100%;
}

.content-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* About page image */

.about-image {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

/* ===== Contact page specific ===== */

.contact-hero {
  padding-bottom: 1.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.contact-copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.contact-copy p {
  margin: 0 0 1rem;
}

.contact-detail-group {
  margin-bottom: 0.75rem;
}

.contact-detail-group h3 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b5563;
}

.contact-detail-group p {
  margin: 0;
}

.contact-note {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Get in Touch card */

.get-in-touch-card {
  border-radius: 1.75rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.get-in-touch-header h2 {
  margin: 0 0 0.25rem;
  font-size: 1.3rem;
}

.get-in-touch-header p {
  margin: 0 0 1.4rem;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Form grid similar to screenshot */

.get-in-touch-form .gt-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.25rem;
}

.get-in-touch-form .gt-field {
  display: flex;
  flex-direction: column;
}

.get-in-touch-form .gt-field.full {
  grid-column: 1 / -1;
}

/* Labels */

.get-in-touch-form label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

/* Inputs & textarea */

.get-in-touch-form input,
.get-in-touch-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 0.95rem;
  line-height: 1.4;
}

.get-in-touch-form input::placeholder,
.get-in-touch-form textarea::placeholder {
  color: #9ca3af;
}

.get-in-touch-form textarea {
  min-height: 200px;
  resize: vertical;
}

/* Focus */

.get-in-touch-form input:focus,
.get-in-touch-form textarea:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 1px #0f766e33;
  background: #ffffff;
}

/* Required */

.get-in-touch-form .required {
  color: #dc2626;
  margin-left: 0.15rem;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Actions */

.get-in-touch-form .gt-actions {
  margin-top: 0.25rem;
}

.get-in-touch-form .gt-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 0.98rem;
}

.get-in-touch-form .gt-disclaimer {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

/* Footer */

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  text-align: center;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-contact {
    text-align: left;
  }

  .page-content .content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .get-in-touch-card {
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .get-in-touch-form .gt-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .get-in-touch-form .gt-field.full,
  .get-in-touch-form .gt-actions.full {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .highlights-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-inner {
    justify-content: flex-start;
  }
}

/* ===== Projects page specific ===== */

/* Slightly different feel for the projects hero */
.hero-sub {
  padding-top: 1.25rem;
  padding-bottom: 2.25rem;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f3f4f6 48%, #f3f4f6 100%);
}

.hero-sub .hero-inner {
  align-items: flex-start;
}

.hero-sub .hero-text h1 {
  font-size: 1.9rem;
}

.hero-sub .hero-text p {
  max-width: 44rem;
}

/* Projects gallery wrapper */
.projects-gallery {
  margin-top: 2rem;
}

.projects-gallery h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: #0f172a;
}

.projects-gallery p {
  margin: 0 0 1.25rem;
  color: #4b5563;
  max-width: 50rem;
}

/* Responsive image grid for project photos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-item {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.gallery-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
  filter: brightness(1.03);
}

/* Extra breathing room for cards on projects page */
body.projects .highlights {
  margin-top: 0.5rem;
}
