/* ══════════════════════════════════════════
   GRAVITAS — style.css
   Theme: Industrial Luxury / Grey & Anthracite
══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --anthracite: #1e1f21;
  --dark: #141516;
  --mid-grey: #2c2e31;
  --light-grey: #4a4d52;
  --pale-grey: #8a8d93;
  --silver: #c4c7cc;
  --off-white: #e8e9eb;
  --white: #f5f6f7;

  --accent: #8c7355;
  /* warm brown */
  --accent-light: #b8956a;
  --green: #5a6e4a;
  /* military green */
  --green-light: #7a9465;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset / Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--off-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 2rem;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--light-grey);
  border-radius: 3px;
}


.rotate90 {
  display: inline-block;
  transform: rotate(-90deg) !important;
}

.text-accent {
  color: var(--accent-light);
}

.section-pad {
  padding: 100px 0;
}

.section-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0;
}

.section-desc {
  color: var(--pale-grey);
  font-size: 0.97rem;
  max-width: 420px;
}

/* ── Buttons ── */
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-brand:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140, 115, 85, 0.35);
}

.btn-ghost-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--light-grey);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-ghost-brand:hover {
  border-color: var(--silver);
  color: var(--white);
  transform: translateY(-2px);
}


#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(20, 21, 22, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-brand img {
  width: 100%;
}

.brand-mark {
  color: var(--accent-light);
  margin-right: 1px;
}

.nav-link {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver) !important;
  transition: color var(--transition);
  padding: 0.5rem 0.6rem !important;
}

.nav-link:hover {
  color: var(--white) !important;
}

.btn-outline-brand {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline-brand:hover {
  background: var(--accent);
  color: var(--white) !important;
}

.darkGround {
  background: rgba(33, 33, 33, 1) !important;
}

.phoneNum {
  margin-left: 2rem;
  font-size: 1.5rem !important;
}


#hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("./assets/gated.jpg");
  background-size: 100%;
  opacity: 0.6;
  pointer-events: none;
  background-repeat: no-repeat;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: -0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.5s forwards;
}

.title-outline {
  color: var(--accent-light);
  font-size: clamp(2rem, 4vw, 4rem);
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.5s forwards;
}

.hero-sub {
  color: white;
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.7s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 0.7s ease 1.9s forwards;
}

.hero-stats {
  opacity: 0;
  animation: fadeUp 0.7s ease 2.1s forwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}

.stat-num sup {
  font-size: 1rem;
  color: var(--accent-light);
}

.stat-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pale-grey);
  margin-top: 0.2rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 320px;
  height: 380px;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(140, 115, 85, 0.2);
  animation: rotateSlow 20s linear infinite;
}

.hero-card-big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--mid-grey);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  z-index: 2;
}

.hero-card-big .hc-icon {
  font-size: 2.5rem;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.hero-card-big span {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-card-sm {
  position: absolute;
  background: var(--mid-grey);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--silver);
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.hero-card-sm.top {
  top: 30px;
  right: -20px;
  animation-delay: 0s;
}

.hero-card-sm.bottom {
  bottom: 40px;
  left: -30px;
  animation-delay: -2s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll-hint span {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pale-grey);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.service-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}


.service-card {
  background: var(--mid-grey);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  z-index: 100;
}

.service-card-images {
  position: absolute;
  z-index: 200;
  transform: translateY(10%);
  height: 100%;
  align-content: end;
  background-color: rgba(0, 0, 0, 0.03);
  overflow: hidden;
  opacity: 0%;
  filter: brightness(80%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  width: 93%;
  cursor: pointer;
}

.service-card-mobile-images {
  display: none;
}

.service-card-images img {
  width: 100%;
  border-radius: 0px 0px 8px 8px;
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: var(--transition);
}

.service-card-wrapper:hover :first-child {
  transform: translateX(0rem);
  opacity: 100%;
}

/* .service-card:hover::before {
  color: rgba(140, 115, 85, 0.06);
} */

.service-card.featured {
  background: linear-gradient(135deg, var(--mid-grey), #2e2a22);
  border-color: rgba(140, 115, 85, 0.25);
}

.service-card.featured::after {
  content: 'Popular';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.sc-icon {
  font-size: 1.8rem;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
  display: block;
}

.sc-title {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.sc-text {
  font-size: 0.88rem;
  color: var(--pale-grey);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.sc-tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--pale-grey);
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

.sc-link {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}

.sc-link:hover {
  color: var(--white);
  gap: 0.7rem;
}


.about-section {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.about-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.012) 40px,
      rgba(255, 255, 255, 0.012) 41px);
  pointer-events: none;
}

.about-visual-wrap {
  position: relative;
  height: 420px;
}

.about-img-block {
  position: absolute;
}

.about-img-block.main {
  top: 0;
  left: 0;
  width: 70%;
  z-index: 2;
}

.about-img-block.secondary {
  bottom: 0;
  right: 0;
  width: 55%;
  z-index: 3;
}

.img-placeholder {
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.main-img {
  height: 232px;
  background: linear-gradient(135deg, var(--mid-grey) 0%, #262422 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent-light);
  border-radius: 16px;
}

.main-img img, .secondary-img img {
  width: 100%;
  border-radius: 16px;
}

.secondary-img {
  height: 176px;
  background: linear-gradient(135deg, #2a2a28 0%, var(--mid-grey) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--green-light);
  transform: translateY(-4rem);
  border-radius: 16px;
}


.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: rgba(33, 33, 33, 08);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(140, 115, 85, 0.4);
  display: none;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}

.badge-text {
  font-family: var(--font-cond);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.about-body {
  color: var(--pale-grey);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
}


.filter-btn {
  background: transparent;
  border: 1px solid var(--light-grey);
  color: var(--pale-grey);
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item.hidden {
  display: none;
}

.gi-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
}

.gallery-item.large .gi-inner {
  height: 300px;
}

.gi-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, var(--mid-grey), var(--anthracite));
  color: var(--light-grey);
}

.gi-img.garden {
  background: linear-gradient(135deg, #1e2a1e, #2c3820);
  color: var(--green);
}

.gi-img.doors {
  background: linear-gradient(135deg, #241e1e, #2c2320);
  color: var(--accent);
}

.gi-img.smart {
  background: linear-gradient(135deg, #1a1e28, #20232e);
  color: #6b8cc7;
}

.gi-img.gates2 {
  background: linear-gradient(135deg, #222222, var(--mid-grey));
  color: var(--silver);
}

.gi-img.garden2 {
  background: linear-gradient(135deg, #1f2b18, #2d3a22);
  color: var(--green-light);
}

.gi-inner:hover .gi-img {
  transform: scale(1.06);
}

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.92) 0%, transparent 55%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gi-inner:hover .gi-overlay {
  opacity: 1;
}

.gi-cat {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.3rem;
}

.gi-title {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.gi-loc {
  font-size: 0.75rem;
  color: var(--pale-grey);
  margin: 0;
}

.aluCol {
  padding-top: 1rem;
  padding-bottom: 2rem;
  transform: translate(-1.5rem, 1.5rem);

}

.about-body span {
  color: var(--accent-light);
}

#sommerLogo img {
  width: 33%;
  border-radius: 12px;
  opacity: 90%;
}


.process-section {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.process-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.process-track {
  position: relative;
}

.process-line {
  display: none;
}

.process-step {
  background: var(--mid-grey);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(140, 115, 85, 0.3);
  transform: translateY(-4px);
}

.ps-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.ps-icon {
  font-size: 1.6rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.ps-title {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.ps-text {
  font-size: 0.87rem;
  color: var(--pale-grey);
  line-height: 1.65;
  margin: 0;
}

/* Step connector dots */
.process-step[data-step="01"],
.process-step[data-step="02"],
.process-step[data-step="03"],
.process-step[data-step="04"],
.process-step[data-step="05"],
.process-step[data-step="06"] {
  border-top: 3px solid transparent;
}

.process-step[data-step="01"] {
  border-top-color: var(--accent);
}

.process-step[data-step="02"] {
  border-top-color: var(--accent-light);
}

.process-step[data-step="03"] {
  border-top-color: var(--green-light);
}

.process-step[data-step="04"] {
  border-top-color: var(--green);
}

.process-step[data-step="05"] {
  border-top-color: var(--silver);
}

.process-step[data-step="06"] {
  border-top-color: var(--accent);
}


.contact-section {
  background: var(--dark);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.contact-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Side */
.contact-side {
  background: linear-gradient(160deg, #1e1a15, #201e1a);
  position: relative;
  overflow: hidden;
}

.contact-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.cs-inner {
  padding: 3rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cs-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.05;
  color: var(--white);
  margin-top: 0.5rem;
}

.cs-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem 0;
}

.cs-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cs-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--pale-grey);
}

.cs-row i {
  color: var(--accent-light);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.bottomPhones {
  text-decoration: none;
  color: unset;
  cursor: pointer;
}

.cs-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pale-grey);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.cs-social a:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(140, 115, 85, 0.1);
}

/* Form Col */
.contact-form-col {
  background: var(--mid-grey);
}

.cf-inner {
  padding: 3rem;
}

.cf-heading {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.cf-sub {
  font-size: 0.85rem;
  color: var(--pale-grey);
  margin-bottom: 2rem;
}

/* Inputs */
.form-label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.4rem;
}

.custom-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--radius) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  padding: 0.75rem 1rem !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}

.custom-input::placeholder {
  color: var(--light-grey) !important;
}

.custom-input:focus {
  border-color: rgba(140, 115, 85, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(140, 115, 85, 0.12) !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

textarea.custom-input {
  resize: vertical;
  min-height: 130px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

#formChecker a {
  text-decoration: none;
  color: unset;
}

#formChecker {
  padding-top: 0.5rem;
}

.form-success i {
  font-size: 3rem;
  color: var(--green-light);
  margin-bottom: 1rem;
  display: block;
}

.form-success h5 {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--pale-grey);
  font-size: 0.9rem;
}


footer {
  background: var(--dark);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer a {
  text-decoration: none;
  color: unset;
}


#gdprMain {
  background-color: rgba(14, 14, 14, 0.92);
  padding-top: 12rem;
  color: rgb(233, 233, 233);
  padding-bottom: 8rem;
}


@media screen and (max-width: 1280px) {
  .hero-content {
    margin-top: 6rem;
  }

  .phoneNum {
    font-size: 1.3rem !important;
    margin-left: 0.5rem;
  }
}

@media screen and (max-width: 992px) {
  .section-pad {
    padding: 70px 0;
  }

  .hero-title {
    margin-bottom: 0rem;
  }

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

  .gallery-item.large {
    grid-column: span 2;
  }

  .phoneNum {
    font-size: 1rem !important;
    margin-left: 0;
  }

  .navbar-toggler {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%28184, 149, 106%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .btn-outline-brand {
    color: var(--accent-light) !important;
    background: none;
  }

  .hero-content {
    margin-top: 0rem;
  }

  .service-card-images {
    display: none;
  }

  .service-card-mobile-images {
    display: initial;
  }

  .service-card-mobile-images img {
    width: 100%;
    border-radius: 10px;
    margin-top: 1rem;
  }

  .aluCol {
    border: none;
    transform: translateY(0);
  }

  .aboutRow {
    flex-direction: column-reverse;
  }

  .about-img-block.main {
    margin-top: 4rem;
    padding-top: 4rem;
    transform: translateY(-6rem);
  }

  .main-img {
    height: 232px;
  }

  .secondary-img {
    height: 192px;
    transform: translateY(0);
  }

  .about-img-block.secondary {
    transform: translateY(1rem);
    
  }




}

@media screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .cf-inner {
    padding: 2rem 1.5rem;
  }

  .cs-inner {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  #mainNav {
    background-color: rgb(33, 33, 33) !important;
  }

  #hero {
    margin-top: 5.8rem;
  }

  .hero-content {
    margin-top: 4rem;
  }

  .navbar-brand {
    margin-right: -1rem !important;
  }

  .navbar-brand img {
    width: 80% !important;
  }

  .secondPhone {
    display: none;
  }

  #sommerLogo img {
    width: 66%;
    border-radius: 16px;
  }

  .about-img-block.main {
    margin-top: 4rem;
    padding-top: 4rem;
    transform: translateY(-6rem);
  }

  .main-img {
    height: 192px;
  }

  .secondary-img {
    height: 144px;
  }

  .about-img-block.secondary {
    transform: translateY(-6rem);
  }


}



@keyframes opa {
  0% {
    opacity: 100%;
    filter: brightness(0%)grayscale(66%);
  }

  80% {
    opacity: 100%;
    filter: brightness(33%)grayscale(66%);
  }

  100% {
    opacity: 0%;
    filter: brightness(0);
  }


}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}