/* ════════════════════════════════════════════════════
   URBAN SURGICALS · style.css · Simple & Clean
════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────── */
:root {
  --green-dark: #2C3E35;
  --green-mid: #4A7C59;
  --green-light: #A8D5B5;
  --green-pale: #EEF2EE;
  --charcoal: #1A1A1A;
  --body-text: #3D4A3D;
  --muted: #6E7E6E;
  --white: #FFFFFF;
  --off-white: #F7F9F7;
  --shadow-sm: 0 2px 12px rgba(44, 62, 53, .08);
  --shadow-md: 0 6px 30px rgba(44, 62, 53, .13);
  --shadow-lg: 0 16px 60px rgba(44, 62, 53, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --tr: 0.25s ease;
  --nav-h: 100px;
}

/* ── RESET ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--body-text);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(60px, 7vw, 100px) 0;
}

/* ── TYPOGRAPHY ────────────────────────────────────── */
.section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--charcoal);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 1rem auto 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.9rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr), box-shadow var(--tr);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .65);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

.btn-nav {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  padding: .6rem 1.4rem;
  font-size: .85rem;
}

.btn-nav:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

/* ══════════════════════════════════════════════════
   NAVBAR — solid white always, CSS checkbox hamburger
══════════════════════════════════════════════════ */
.nav-toggle-input {
  display: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-logo img {
  height: clamp(60px, 10vw, 100px);
  width: clamp(60px, 10vw, 100px);
  object-fit: contain;
  border-radius: 50%;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--body-text);
  padding: .45rem .8rem;
  border-radius: 6px;
  transition: var(--tr);
}

.nav-link:hover {
  color: var(--green-mid);
  background: var(--green-pale);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}

.bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--tr);
}

/* Open state */
.nav-toggle-input:checked~.navbar .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-input:checked~.navbar .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked~.navbar .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 850;
  cursor: pointer;
}

.nav-toggle-input:checked~.nav-overlay {
  display: block;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: url('banner.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, .85) 0%, rgba(44, 62, 53, .72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-light);
  padding: .35rem 1rem;
  background: rgba(168, 213, 181, .12);
  border: 1px solid rgba(168, 213, 181, .3);
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, .82);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── ABOUT ─────────────────────────────────────────── */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: url('about.jpg') center/cover no-repeat;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green-light);
}

.about-badge span {
  font-size: .75rem;
  opacity: .85;
}

.about-body {
  color: var(--muted);
  margin: 1rem 0 2rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  transition: background var(--tr);
}

.about-card:hover {
  background: var(--green-light);
}

.about-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-card strong {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--charcoal);
}

.about-card p {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .2rem;
}

/* ── SERVICES ──────────────────────────────────────── */
.services {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  background: var(--green-pale);
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .9rem;
  color: var(--muted);
}

/* ── WHY US ────────────────────────────────────────── */
.why {
  background: var(--green-dark);
}

.why .section-eyebrow {
  color: var(--green-light);
}

.why .section-title {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(168, 213, 181, .18);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: background var(--tr), border-color var(--tr);
}

.why-card:hover {
  background: rgba(168, 213, 181, .12);
  border-color: rgba(168, 213, 181, .4);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(168, 213, 181, .3);
  line-height: 1;
  margin-bottom: .8rem;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}

.why-card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
}


/* ── CONTACT ───────────────────────────────────────── */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-sub {
  color: var(--muted);
  margin: .8rem 0 1.8rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.contact-list strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .2rem;
}

.contact-list p,
.contact-list a {
  font-size: .95rem;
  color: var(--body-text);
}

.contact-list a:hover {
  color: var(--green-mid);
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.map-inner {
  text-align: center;
  color: var(--green-dark);
}

.map-pin {
  font-size: 3rem;
  display: block;
  margin-bottom: .8rem;
}

.map-inner p {
  font-weight: 600;
}

.map-inner small {
  color: var(--muted);
  font-size: .82rem;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .65);
  padding-top: 4rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
  height: clamp(60px, 8vw, 100px);
  width: clamp(60px, 8vw, 100px);
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col li,
.footer-col a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--tr);
}

.footer-col a:hover {
  color: var(--green-light);
}

.footer-bottom {
  padding: 1.2rem 0;
  font-size: .82rem;
  text-align: center;
  color: rgba(255, 255, 255, .35);
  display: flex;
  justify-content: center;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

/* ── Tablets / small laptops ─────────────────────── */
@media (max-width: 1024px) {
  :root {
    --nav-h: 90px;
  }

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

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

  .about-badge {
    padding: .9rem 1.1rem;
  }

  .about-badge strong {
    font-size: 2rem;
  }
}

/* ── Tablets / large phones ──────────────────────── */
@media (max-width: 820px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    max-width: 480px;
    margin: auto;
  }

  .about-badge {
    right: 0;
    bottom: -1rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .contact-map iframe {
    height: 350px;
  }
}

/* ── Phones ───────────────────────────────────────── */
@media (max-width: 640px) {
  :root {
    --nav-h: 68px;
  }

  .nav-logo img {
    height: 50px;
    width: 50px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 75vw;
    max-width: 300px;
    height: 100svh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 1.5rem) 2rem 2rem;
    gap: .2rem;
    box-shadow: -4px 0 30px rgba(0, 0, 0, .12);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 900;
  }

  .nav-toggle-input:checked~.navbar .nav-links {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1rem;
    width: 100%;
    padding: .7rem .8rem;
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
    margin-top: .5rem;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .about-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

  .contact-list li {
    gap: .7rem;
  }

  .contact-map iframe {
    height: 280px;
  }

  .footer {
    padding-top: 3rem;
  }

  .footer-logo {
    height: 70px;
    width: 70px;
  }
}

/* ── Small phones ─────────────────────────────────── */
@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .about-badge strong {
    font-size: 1.7rem;
  }
}