/* Base */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050509;
  color: #f7f7f7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.mt-40 {
  margin-top: 40px;
}

/* Header & Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 9, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #f5c76b, #f57a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #050509;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: #c7c7c7;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  color: #dddddd;
}

.nav-link:hover {
  color: #f5c76b;
}

.nav-link.active {
  color: #f5c76b;
  border-color: #f5c76b;
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 199, 107, 0.7);
  background: rgba(245, 199, 107, 0.06);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #f7f7f7;
  border-radius: 999px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 89vh;
  display: flex;
  align-items: center;
  background-image: url("https://img.sanishtech.com/u/00319961974a111648dcf6fdd5b3bdc6.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(245, 199, 107, 0), transparent),
              linear-gradient(to bottom, rgba(5, 5, 9, 0.1), rgba(5, 5, 9, 0.96));
}

.hero-content {
  position: relative;
  padding: 80px 16px 60px;
  max-width: 640px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.hero-title span {
  color: #f5c76b;
}

.hero-text {
  color: #d0d0d0;
  font-size: 0.98rem;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #b0b0b0;
}

.hero-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    border-color 0.16s ease, color 0.16s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f5c76b, #f57a6b);
  color: #050509;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(247, 247, 247, 0.4);
  color: #f7f7f7;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline {
  border-color: rgba(245, 199, 107, 0.6);
  color: #f5c76b;
}

.btn-outline:hover {
  background: rgba(245, 199, 107, 0.08);
}

.btn-lg {
  padding: 11px 26px;
}

/* Sections */

.section {
  padding: 64px 0;
}

.section-alt {
  background: radial-gradient(circle at top, #12121c, #050509);
}

.section-cta {
  background: linear-gradient(120deg, #f5c76b1c, #f57a6b20);
  border-top: 1px solid rgba(245, 199, 107, 0.25);
  border-bottom: 1px solid rgba(245, 199, 107, 0.25);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.center {
  text-align: center;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f5c76b;
  margin-bottom: 8px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #c5c5c5;
}

/* Grids */

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Feature cards */

.feature-card {
  background: #101018;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #f5c76b, #f57a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #050509;
  margin-bottom: 10px;
}

.feature-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 0.9rem;
  color: #d0d0d0;
}

/* Gallery preview cards (home) */

.gallery-preview {
  margin-top: 16px;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background: #111018;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  border-color: rgba(245, 199, 107, 0.7);
}

.gallery-image {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.gallery-content {
  padding: 14px 14px 16px;
}

.gallery-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f5c76b;
  margin-bottom: 4px;
}

.gallery-content h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-content p {
  font-size: 0.85rem;
  color: #cdcdcd;
}

/* CTA */

.section-cta .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Page heroes */

.page-hero {
  padding: 72px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, #151520, #050509);
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-subtitle {
  max-width: 640px;
  font-size: 0.95rem;
  color: #c5c5c5;
}

/* About page */

.about-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
}

.about-text p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.about-pillars h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.about-pillars ul {
  list-style: disc;
  padding-left: 16px;
  font-size: 0.88rem;
  color: #d0d0d0;
}

.about-image-card {
  border-radius: 22px;
  overflow: hidden;
  background: #101018;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.about-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.about-tag {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #f5c76b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Services */

.service-card {
  background: #101018;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.service-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #d4d4d4;
}

.service-card ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.86rem;
  color: #cfcfcf;
}

.service-card ul li + li {
  margin-top: 4px;
}

/* Portfolio main gallery (reusing .card styles from earlier) */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111118;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.7);
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.06);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.05)
  );
  pointer-events: none;
}

.card-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(245, 199, 107, 0.8);
  color: #f5c76b;
  margin-bottom: 6px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.card-text {
  font-size: 0.8rem;
  color: #e0e0e0;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
}

.contact-card,
.contact-info-card {
  background: #101018;
  border-radius: 18px;
  padding: 20px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.contact-card h2,
.contact-info-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.form-field label {
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #050509;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 10px;
  color: #f7f7f7;
  font-size: 0.85rem;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(245, 199, 107, 0.7);
}

.form-note {
  font-size: 0.8rem;
  color: #b5b5b5;
  margin-top: 6px;
}

.contact-line {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-highlight {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #f5c76b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

/* Footer */

.site-footer {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  background: #050509;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #b0b0b0;
  max-width: 260px;
}

.footer-columns {
  display: flex;
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-col a,
.footer-col p {
  font-size: 0.8rem;
  color: #b8b8b8;
}

.footer-col a + a,
.footer-col p + p {
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.78rem;
  color: #9a9a9a;
  padding: 10px 0 14px;
}

/* Responsive */

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .section-cta .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    right: 16px;
    top: 56px;
    flex-direction: column;
    background: rgba(5, 5, 9, 0.98);
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.6rem;
  }
}