/* ============================================
   brodersen.studio — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F0F0F0;
  --mid-gray: #999999;
  --dark-gray: #666666;
  --black: #1A1A1A;
  --orange: #C4693D;
  --teal: #2E4A52;
  --gold: #D4A853;
  --sage: #5B7F63;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
}

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

a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--orange);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h3 { font-size: 1.1rem; }

p {
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* --- Header --- */
.site-header {
  padding: 1.5rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--mid-gray);
}

.nav-links a:hover {
  color: var(--black);
}

/* --- Hero --- */
.hero {
  padding: 4rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-text .greeting {
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

.hero-text h1 {
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 0 0 auto;
}

.hero-image .circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--orange);
  overflow: hidden;
}

.hero-image .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
}

.btn:hover {
  color: var(--white);
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CTA --- */
.cta {
  text-align: center;
  padding: 2.5rem 0;
}

/* --- Testimonials --- */
.testimonials {
  padding: 0.5rem 0 5rem;
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.testimonial .stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin: 0 auto;
  max-width: 240px;
  line-height: 1.6;
}

/* --- Mission --- */
.mission {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.mission-text {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
  max-width: none;
}

/* --- Section Titles --- */
.section-title {
  margin-bottom: 2rem;
}

/* --- Services / Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-bottom: 0.25rem;
  color: var(--teal);
}

.card .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
}

.card ul {
  list-style: none;
  margin-top: 1rem;
}

.card ul li {
  font-size: 0.9rem;
  color: var(--dark-gray);
  padding: 0.25rem 0 0.25rem 1.2rem;
  position: relative;
}

.card ul li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* --- Footer --- */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--light-gray);
  margin-top: 4rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* --- Legal Pages --- */
.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal h1 {
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal p,
.legal li {
  font-size: 0.925rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

/* --- Coming Soon Page --- */
.page-coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: var(--white);
}

.coming-soon {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.2s ease-out;
}

.coming-soon-logo {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.coming-soon-logo span {
  color: var(--orange);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
  animation: expand 1.2s ease-out 0.4s both;
}

.tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
  text-transform: lowercase;
  animation: fadeIn 1.2s ease-out 0.6s both;
}

.status {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: fadeIn 1.2s ease-out 1s both;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s ease-in-out infinite;
}

.status-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mid-gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon-footer {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.75rem;
  color: var(--mid-gray);
  z-index: 1;
}

.coming-soon-footer a {
  color: var(--mid-gray);
}

.coming-soon-footer a:hover {
  color: var(--orange);
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes expand {
  from { width: 0; opacity: 0; }
  to { width: 48px; opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
  }

  .hero-image .circle {
    width: 240px;
    height: 240px;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .nav-links {
    display: none;
  }

  .btn-block {
    max-width: 85%;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  h1 { font-size: 1.6rem; }
}

/* --- Cookie Banner --- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 1.25rem 2rem;
  z-index: 9999;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
}

#cookie-banner-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

#cookie-banner p {
  font-size: 0.875rem;
  color: var(--dark-gray);
  margin: 0;
  max-width: none;
}

#cookie-banner a {
  color: var(--teal);
  text-decoration: underline;
}

#cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

#cookie-accept {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--teal);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s;
}

#cookie-accept:hover {
  opacity: 0.88;
}

#cookie-decline {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid-gray);
  background: none;
  border: 1px solid var(--light-gray);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

#cookie-decline:hover {
  color: var(--black);
  border-color: var(--mid-gray);
}

@media (max-width: 768px) {
  #cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  #cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}
