/* Cookie Notice Modal */
#cookieNotice {
  position: fixed;
  bottom: 2.2em;
  right: 2.2em;
  z-index: 2000;
  background: #fff;
  color: #1a2636;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px #5a7ca733;
  padding: 1.1em 1.5em 1.1em 1.2em;
  display: flex;
  align-items: center;
  gap: 1.1em;
  font-size: 1.05rem;
  font-family: 'Inter', system-ui, sans-serif;
}

#cookieNotice button {
  background: linear-gradient(90deg, #5a7ca7 0%, #8bb6e2 100%);
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  border: none;
  border-radius: 2em;
  padding: 0.4em 1.3em;
  cursor: pointer;
  box-shadow: 0 1px 4px #b3d6f933;
  transition: background 0.2s, box-shadow 0.2s;
}

#cookieNotice button:hover, #cookieNotice button:focus {
  background: linear-gradient(90deg, #3a5c87 0%, #5a7ca7 100%);
  box-shadow: 0 2px 8px #b3d6f966;
}

@media (max-width: 600px) {
  #cookieNotice {
    right: 0.5em;
    left: 0.5em;
    bottom: 0.5em;
    width: auto;
    max-width: 98vw;
    font-size: 0.98rem;
    padding: 0.8em 0.7em 0.8em 0.7em;
  }
}
.tagline-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5em;
}

.studio-main {
    text-decoration: underline;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2em;
    margin-bottom: 0.7em;
}

.company-name {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 3.0rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px #e3f0ff80;
    background: linear-gradient(90deg, #3a8dde 0%, #8bb6e2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.contact-btn {
    background: linear-gradient(90deg, #5a7ca7 0%, #8bb6e2 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 2em;
    padding: 0.7em 2em;
    margin: 1.5em 0 0.5em 0;
    cursor: pointer;
    box-shadow: 0 2px 8px #b3d6f933;
    transition: background 0.2s, box-shadow 0.2s;
}

.contact-btn:hover, .contact-btn:focus {
    background: linear-gradient(90deg, #3a5c87 0%, #5a7ca7 100%);
    box-shadow: 0 4px 16px #b3d6f966;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(26, 38, 54, 0.18);
    backdrop-filter: blur(2px);
}

.modal-content {
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    border-radius: 1.2em;
    width: 95vw;
    max-width: 600px;
    height: auto;
    max-height: 90vh;
    box-shadow: 0 4px 32px #5a7ca799;
    animation: modalIn 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@keyframes modalIn {
    from {
        transform: translate(-50%, calc(-50% + 40px));
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.modal-content iframe {
    width: 100%;
    height: 50vh;
    max-width: 600px;
    max-height: 70vh;
    border: none;
    background: transparent;
    display: block;
}

.close {
    position: absolute;
    top: 0.7em;
    right: 1.1em;
    font-size: 1.7em;
    color: #5a7ca7;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s;
    z-index: 2;
}

.close:hover, .close:focus {
    color: #1a2636;
}

html {
    box-sizing: border-box;
    font-size: 18px;
}

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

body {
    margin: 0;
    min-height: calc(var(--vh, 1vh) * 100);
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, #e3f0ff 0%, #f8fafc 60%, #d0eaff 100%);
    color: #1a2636;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    margin-bottom: 0;
}

.emoji-stack {
    position: relative;
    display: inline-block;
    width: 5em;
    height: 4.5em;
}

.emoji {
    position: absolute;
    user-select: none;
    pointer-events: none;
    transition: transform 0.2s;
}

.emoji.cloud {
    font-size: 2.8em;
    left: 0.7em;
    top: -0.5em;
    z-index: 1;
    opacity: 0.85;
}

.emoji.mountain {
    font-size: 3.7em;
    left: 0.2em;
    top: -0.2em;
    z-index: 2;
}

.emoji.eagle {
    font-size: 1.4em;
    left: 0.6em;
    top: 0.5em;
    z-index: 3;
    transform: rotate(-10deg);
}

.tagline {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.5px;
    text-align: center;
    color: #1a2636;
    text-shadow: 0 2px 8px #e3f0ff80;
}

.contact {
    padding: 0;
    max-width: 420px;
    width: 100%;
    margin: 2.5em auto 0 auto;
    text-align: center;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.contact h2 {
    margin-top: 0;
    color: #1a2636;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact iframe {
    border: none;
    width: 100%;
    min-height: 320px;
    background: transparent;
    margin-top: 1em;
}

footer {
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    color: #5a7ca7;
    font-size: 1rem;
    background: transparent;
    letter-spacing: 0.2px;
}

footer small {
    display: block;
    margin-top: 0.5em;
    color: #8bb6e2;
    font-size: 0.95em;
}

@media (max-width: 600px) {
    .header-row {
        flex-direction: column;
        gap: 0.2em;
    }
    .company-name {
        font-size: 2.3rem;
    }
    .emoji-stack {
        left: -0.5em;
        top: 0.5em;
    }
    .tagline {
        font-size: 1.3rem;
    }
    .contact {
        padding: 1.2em 0.5em 1em 0.5em;
        max-width: 98vw;
    }
    .modal-content {
        max-width: 99vw;
        padding: 0.5em 0.2em 0.2em 0.2em;
    }
    .modal-content iframe {
        width: 100%;
        height: 75vh;
        max-width: 600px;
        max-height: 75vh;
        border: none;
        background: transparent;
        display: block;
    }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
